router
在 linux
中就是 路由器,没有虚拟路由器
如果两个tap
不在同一个网段,那么需要 router
才能通信
- 打开
router
转发功能
vim /etc/sysctl.conf
net.ipv4.if_forward=1
-
查看
namespace
路由表
ip netns exec ns1 route -nee
并没有 192.168.200.0/24 -
添加路由表项
ip netns exec ns1 route add -net 192.168.200.0 netmask 255.255.255.0 gw 192.168.100.1