当前位置: 技术问答>linux和unix
linux不使用iptables如何打开端口
来源: 互联网 发布时间:2016-04-14
本文导语: linux不使用iptables如何打开端口: 比如通过hosts.allow和xinted 如和打开端口? | hosts.allow只是设置允许访问的ip范围,不能设置端口号 xinted可以设置,以cvs的服务为例(/etc/xinetd.d/rsync): service cvs...
linux不使用iptables如何打开端口:
比如通过hosts.allow和xinted 如和打开端口?
比如通过hosts.allow和xinted 如和打开端口?
|
hosts.allow只是设置允许访问的ip范围,不能设置端口号
xinted可以设置,以cvs的服务为例(/etc/xinetd.d/rsync):
service cvspserver
{
disable = yes
port = 2401
socket_type = stream
protocol = tcp
wait = no
user = root
passenv = PATH
server = /usr/bin/cvs
env = HOME=/var/cvs
server_args = -f --allow-root=/var/cvs pserver
}
将disable = yes改为 disable = no即可打开2401端口
xinted可以设置,以cvs的服务为例(/etc/xinetd.d/rsync):
service cvspserver
{
disable = yes
port = 2401
socket_type = stream
protocol = tcp
wait = no
user = root
passenv = PATH
server = /usr/bin/cvs
env = HOME=/var/cvs
server_args = -f --allow-root=/var/cvs pserver
}
将disable = yes改为 disable = no即可打开2401端口