linux用/etc/hosts.allow和deny设置?
#1.允许172.16.100.27访问本机的telnet服务
vi /etc/hosts.allow
telnet: 172.16.100.27 :allow
#2.拒绝172.16.100.0/24网段的主机访问
telnet : 172.16.100.0/255.255.0.0 : deny
这两个文件以/etc/hosts.allow为优先来判断,若分析到的IP或网段并没有记录在/etc/hosts.allow,则以/etc/hosts.deny来判断、
linux如何查看host地址?
1、ifconfig -a
2、ip addr
以上两个命令可以查看到网卡对应的IP地址,但不一定能够看到服务器的外网IP。
3、curl ifconfig.me
查看服务器外网IP,需要服务器能够正常连接外网。