首页 > 代码库 > Linux双网(联通/电信)双IP原路返回路由设置
Linux双网(联通/电信)双IP原路返回路由设置
# 配置ip
# /etc/iproute2/rt_tables增加2个路由表
200 telecom
201 unicom
# /etc/rc.local添加原路返回路由(可以将以下内容写入/etc/init.d/networking脚本中)
ip route flush table telecom
ip route add default via 113.142.37.129 dev em2 src 113.142.37.155 table telecom
ip rule add from 113.142.37.155 table telecom
ip route flush table unicom
ip route add default via 113.200.114.225 dev em3 src 113.200.114.237 table unicom
ip rule add from 113.200.114.237 table unicom
(exit 0)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。