↓
LAN
再把Ros里的网卡设两个IP地址就可以了.
其它的像双网卡一样弄.
[ 本帖最后由 ilovesc 于 2006-1-10 16:50 编辑 ] 不加网卡也可以的.把网吧给你的进线接到交换机上.
楼主的意思是不是想在只有一块网卡的ROS上做路由呢?
希望下面的对你有帮助
如:内网的IP为192.168.1.2-192.168.1.254和192.168.2.2-192.168.2.254
ROS的内网IP分别为192.168.1.1和192.168.2.1
外网的IP为192.168.100.3,网关为192.168.100.100
DNS为202.96.128.68,202.116.234.10
先为这个网卡添加三个IP
/ip address add address=192.168.1.1/24 interface=ether1
/ip address add address=192.168.2.1/24 interface=ether1
/ip address add address=192.168.100.3/24 interface=ether1
然后添加网关
/ip route add gateway=192.168.100.1
然后添加地址转换
/ip firewall nat add chain=srcnat action=masquerade
/ip firewall mangle add chain=prerouting action=accept
还有设置DNS缓存(如果客户机直接用202.96.128.68 202.116.234.10做DNS,可不设)
/ip dns set primary-dns=202.96.128.68 secondary-dns=202.116.234.10 allow-remote-requests=yes
这样内网的客户端就可以上网了(当然,IP地址及网关、DNS要设好)
页:
[1]