当前位置: 技术问答>linux和unix
同一server设置两个ip地址,如何限制每个ip地址提供不同的服务?
来源: 互联网 发布时间:2015-04-25
本文导语: ip1提供telnet、ftp等服务,ip2只提供http服务,要求使用ip2访问server的用户不能使用server利用ip1地址提供的服务。 谢谢。 | 用防火墙是可以实现的。 其实说是防火墙也很容易 ipchains 就可以了 现...
ip1提供telnet、ftp等服务,ip2只提供http服务,要求使用ip2访问server的用户不能使用server利用ip1地址提供的服务。
谢谢。
谢谢。
|
用防火墙是可以实现的。
其实说是防火墙也很容易
ipchains 就可以了
现在允许IP1(192.168.0.3) ehh0 www可以被网段192.168.0.访问
ipchains -A input -s 192.168.0.0/24 1024: -d 192.168.0.3 80: -i eth0 -j ACCEPT
其他的和这个差不多啊
其实说是防火墙也很容易
ipchains 就可以了
现在允许IP1(192.168.0.3) ehh0 www可以被网段192.168.0.访问
ipchains -A input -s 192.168.0.0/24 1024: -d 192.168.0.3 80: -i eth0 -j ACCEPT
其他的和这个差不多啊
|
[root@test network-scripts]# vi ifcfg-eth0:0 (ifcfg-eth0)
# This file is just to be used to test the more IPs
DEVICE=eth0:0
# This file is just to be used to test the more IPs
DEVICE=eth0:0