Questions tagged «routing-table»

1
标记的数据包未按预期路由
更新:解决方案:我本应该使用OUTPUT链 - 而不是PREROUTING链。这个例子仍然不起作用,但我会尽快更新。 在我看来,这似乎应该有效。我将所有路由规则从主表移动到表4然后MARK并将发往端口80/443的数据包定向到表4.我希望端口80的工作方式与我没有做任何事情一样,但gethostbyname失败了吗? #!/bin/bash -x # # Reset/Flush iptables iptables -F iptables -X iptables -t nat -F iptables -t nat -X iptables -t mangle -F iptables -t mangle -X iptables -P INPUT ACCEPT iptables -P FORWARD ACCEPT iptables -P OUTPUT ACCEPT # Reset/Flush table 4 ip route flush table …


2
“创建路由表”分配
我必须创建“将在网络中提供正确连接的最小路由表”。另外,我可以假设两台PC都有接口“ eth0”。 https://zapodaj.net/images/ecb738988990f.jpg Router: adress gateway interface 10.0.0.0 10.0.0.1 e1/1/1 10.0.1.0 10.0.1.1 e1/1/2 Computer A: adress gateway interface 0.0.0.0 10.0.0.1 eth0 10.0.0.0 ??? eth0 Computer B: adress gateway interface 0.0.0.0 10.0.1.1 eth0 10.0.1.0 ??? eth0 这个对吗?我应该用什么地址代替“ ???”?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.