怎么实现2个网卡同时连接(内、外)网络???????
Tofloor
poster avatar
sdpal
deepin
2019-06-24 22:39
Author
求帮助:电脑里有2个网卡,1个连外网,1个连内部网,windows里可以输入批处理命令来实现电脑同时上内、外网,请问本系统怎么实现,请详细指导。。。(附windows批处理命令)
route delete 0.0.0.0
route -p add 192.168.168.0 mask 255.255.255.0 10.25.26.254
route -p add 10.0.0.0 mask 255.0.0.0 10.25.26.254
route -p add 0.0.0.0 mask 0.0.0.0 192.168.1.1
route print
Reply Favorite View the author
All Replies
avatar
shenqs
deepin
2019-06-24 22:58
#1
有线和无线 一个连内一个连外,
Reply View the author
avatar
liao231
deepin
2019-06-24 23:17
#2
你这个批处理打上去试试
Reply View the author
avatar
153******66
deepin
2019-06-27 08:10
#3
  
route add -net 192.168.168.0/24    gw 10.25.26.254;
route add -net 10.0.0.0/8    gw 10.25.26.254;

Reply View the author