debian_设置静态路由_eth0_wlan0

centos7_debian10_设置静态路由_eth0_wlan0

转载注明来源: 本文链接 来自osnosn的博客,写于 2019-12-31.

centos-7

eth0

  • 创建文件, "/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

debian-10(buster)

eth0

  • 可以用 nmtui 配置有线连接,在eth0连接配置中,IPv4配置->显示->路由,自行添加静态路由(目标/掩码,GW,跃点数)
  • 或者,modify "/etc/network/interfaces"
  • 在 iface eth0 inet static 后面加入类似下面这句。其中metric自己定义,也可以不要metric。
    • up ip route add 10.0.0.0/8 via 10.0.0.1 metric 50

wlan0 (wifi client)

  • 可以用 nmtui 配置无线连接,在WIFI连接配置中,IPv4配置->显示->路由,自行添加静态路由(目标/掩码,GW,跃点数)
  • 也可以修改 "/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

转载注明来源: 本文链接 来自osnosn的博客.

上一篇:使用WIFI网卡的AP功能


下一篇:Django集成OpenLDAP认证