centos7_debian10_pve_设置静态路由_eth0_wlan0
转载注明来源: 本文链接 来自osnosn的博客,写于 2019-12-31.
centos-6
- 参考【11.4. STATIC ROUTES AND THE DEFAULT GATEWAY】
- 方法1(似乎无效)。创建文件,
/etc/sysconfig/static-routes
, 内容为
any net 10.0.0.0/8 gw 10.0.0.1
any net 192.168.0.0/16 gw 192.168.0.1
- 方法2。创建文件,
/etc/sysconfig/network-scripts/routes-eth0
,内容看Redhat文档。 - 方法3。用命令
nmtui
修改、添加静态路由。
centos-7
比如网卡名称为: eth0
- 参考【4.5. CONFIGURING STATIC ROUTES IN IFCFG FILES】
- 可以用 nmtui 配置有线连接,在eth0连接配置中,IPv4配置(IPv4 CONFIGURATION)->显示(Show)->路由(Routing),自行添加静态路由(目标/掩码,下一跳,跃点数)
- 方法1。创建文件,
/etc/sysconfig/network-scripts/routes-eth0
, 内容为
10.0.0.0/8 via 10.0.0.1 dev eth0
192.168.0.0/16 via 192.168.0.1 dev eth0
- 方法2。用命令
nmtui
修改、添加静态路由。
centos-8
- 参考【19.8. Creating static routes configuration files in ip-command-format when using the legacy network scripts】
- 方法1。同centos-7,改文件,
/etc/sysconfig/network-scripts/routes-eth0
, - 方法2。用命令
nmtui
修改、添加静态路由。
debian-10(buster) , pve
比如网卡名称为: eth0
- 【启用NetworkManager管理的网卡】可以用 nmtui 配置有线连接,在eth0连接配置中,IPv4配置->显示->路由,自行添加静态路由(目标/掩码,下一跳,跃点数)
- 【没有启用NetworkManager管理的网卡】modify "/etc/network/interfaces"
- 如果系统有
route
命令。在 iface eth0 inet static 后面加入类似下面这句。
其中metric自己定义,也可以不要metric。另外 up/down 要对应。
- 如果系统有
up route add -net 10.0.0.0/8 gw 10.0.0.1 metric 50
up route add -net 192.168.0.0/16 gw 192.168.0.1 metric 50
down route add -net 10.0.0.0/8 gw 10.0.0.1
down route add -net 192.168.0.0/16 gw 192.168.0.1
-
- 如果系统没有
route
命令,但有ip route
命令。(比如PVE虚拟机系统)。在 iface eth0 inet static 后面加入类似下面这句。
其中metric自己定义,也可以不要metric。另外 up/down 要对应。
- 如果系统没有
up ip route add 10.0.0.0/8 via 10.0.0.1 proto static metric 50
up ip route add 192.168.0.0/16 via 192.168.0.1 proto static metric 50
down ip route add 10.0.0.0/8 via 10.0.0.1
down ip route add 192.168.0.0/16 via 192.168.0.1
wlan0 (wifi client)
- 可以用 nmtui 配置无线连接,在WIFI连接配置中,IPv4配置->显示->路由,自行添加静态路由(目标/掩码,下一跳,跃点数)
- 也可以修改 "/etc/NetworkManager/system-connections/" 目录中对应wifi的连接配置文件。
- 在 [ipv4] 段落中加入
route1=10.0.0.0/8,10.0.0.1,50
route2=192.168.0.0/16,192.168.0.1,50
转载注明来源: 本文链接 https://www.cnblogs.com/osnosn/p/12123813.html 来自osnosn的博客.