【相关文章:Linux下用Iptables配置简单网】 【扩展阅读:linux 7.31如何用root用户t】 3. 网络配置文件 【扩展信息:改变redhat的系统语言/字符集】 3.1 /etc/hosts #/etc/hosts #文件格式: ipaddress hostname aliases #文件功能: 提供主机名到ip地址的对应关系,建议将自己经常使用的主机 # 加入此文件中,也可将没有dns记录的机器加入到此文件中, # 这样会方便网络应用 127.0.0.1 localhost localhost.localdomain 202.118.66.81 helius.dlut.edu.cn helius 3.2 /etc/resolv.conf 文件功能:dns客户机配置文件,设置dns服务器的ip地址及dns域名 相关文件:/etc/host.conf 文件格式: domainname 域名 search 域名 nameserver primary_dns_server_ip_address nameserver second_dns_server_ip_address 其中domainname与search可同时存在,也可只有一个;nameserver可指定多个 示例文件内容: search dlut.edu.cn nameserver 202.118.66.6 3.3 /etc/host.conf 功能:指定主机名查找方法,通常指先查找文件/etc/hosts,找不到时再向dns服务器请求。 对于大多数用户不用改动此文件内容。 linux: /etc/host.conf文件内容 order hosts, bind multi on soalris: /etc/nsswitch.conf 中的hosts项 hosts files, dns 3.4 /etc/hostname ( linux redhat 5.x distribution) 功能:设置主机名,不同linux之间可能有所差别,请使用 egrep hostname /etc/rc.d/init.d/* 或 egrep hostname /etc/init.d/* 查找相应版本上的主机名设置文件及方法。 linux redhat 5.x对应文件: /etc/sysconfig/network的hostname项。 3.5 /etc/inetd.conf internet 超级服务器, 相关程序: /usr/sbin/inetd 相应服务: telnet ftp pop3 r* rsh rcp rlogin (建议最好关闭r服务) 其他服务最好关掉 # # inetd.conf this file describes the services that will be available # through the inetd tcp/ip super server. to re-configure # the running inetd process, edit this file, then send the # inetd process a sighup signal. # # version: @(#)/etc/inetd.conf 3.10 05/27/93 # # authors: original taken from bsd unix 4.3/tahoe. # fred n. van kempen, # # modified for debian linux by ian a. murdock # # modified for rhs linux by marc ewing # # # # echo, discard, daytime, and chargen are used primarily for testing. # # to re-read this file after changes, just do a killall -hup inetd # #echo stream tcp nowait root internal #echo dgram udp wait root internal #discard stream tcp nowait root internal #discard dgram udp wait root internal #daytime stream tcp nowait root internal #daytime dgram udp wait root internal #chargen stream tcp nowait root internal #chargen dgram udp wait root internal # ... 下一页