|
用F9做了个DNS,每次重启系统,都无法正常绑定192.168.1.3这个IP,但127.0.0.1和外网IP能正常绑定。只有在重启过DNS服务后,才能正常绑定192.168.1.3这个IP。
怎么会这样?
- [awei@mxawei ~]$ nmap 127.0.0.1
- Starting Nmap 4.53 ( http://insecure.org ) at 2008-08-01 20:13 CST
- Interesting ports on mxawei.cn (127.0.0.1):
- Not shown: 1708 closed ports
- PORT STATE SERVICE
- 22/tcp open ssh
- 53/tcp open domain
- 80/tcp open http
- 111/tcp open rpcbind
- 443/tcp open https
- 3306/tcp open mysql
- Nmap done: 1 IP address (1 host up) scanned in 0.235 seconds
- [awei@mxawei ~]$ nmap 220.162.185.250
- Starting Nmap 4.53 ( http://insecure.org ) at 2008-08-01 20:13 CST
- Interesting ports on 250.185.162.220.broad.sm.fj.dynamic.163data.com.cn (220.162.185.250):
- Not shown: 1710 filtered ports
- PORT STATE SERVICE
- 21/tcp closed ftp
- 53/tcp closed domain
- 80/tcp open http
- 18187/tcp closed opsec_ela
- Nmap done: 1 IP address (1 host up) scanned in 37.050 seconds
- [awei@mxawei ~]$ nmap 192.168.1.3
- Starting Nmap 4.53 ( http://insecure.org ) at 2008-08-01 20:14 CST
- Interesting ports on 192.168.1.3:
- Not shown: 1709 closed ports
- PORT STATE SERVICE
- 22/tcp open ssh
- 80/tcp open http
- 111/tcp open rpcbind
- 443/tcp open https
- 3306/tcp open mysql
- Nmap done: 1 IP address (1 host up) scanned in 13.189 seconds
复制代码
重启named服务后
- [awei@mxawei ~]$ nmap 192.168.1.3
- Starting Nmap 4.53 ( http://insecure.org ) at 2008-08-01 20:17 CST
- Interesting ports on 192.168.1.3:
- Not shown: 1708 closed ports
- PORT STATE SERVICE
- 22/tcp open ssh
- 53/tcp open domain
- 80/tcp open http
- 111/tcp open rpcbind
- 443/tcp open https
- 3306/tcp open mysql
- Nmap done: 1 IP address (1 host up) scanned in 0.533 seconds
复制代码 |
|