linux网络设置

linux网络设置

 

一、网络参数设定
1.netconfig 或setup(菜单方式)---图形化设置
2.Ifconfig
ifconfig interface [aftype] option | address
例:# ifconfig
# ifconfig -a
# ifconfig  eth0 192.168.0.1 netmask  255.255.255.0
# ifconfig  eth0 Down/up  
3.ifup,ifdown   ---
ifup interface, ifdown interface
例:# ifup eth0
#ifdown eth0
4.route   --路由增删改
route –n  //显示路由表
route add [-net|-host] 目标主机或网络 [netmask] [gw|dev];
route del [-net|-host] 目标主机或网络 [netmask] [gw|dev];
例:#route –n    
#route add –net 172.16.100.0 netmask   255.255.255.0  dev eth0
#route add –net 192.16.100.0 netmask   255.255.255.0   gw  host1
#route add default gw 192.168.1.1   ---gw网关
5.ipcalc   ----ip计算
ipcalc -n -m -b 19.16.230.163/25
NETMASK=255.255.255.128
BROADCAST=19.16.230.255
NETWORK=19.16.230.128
例:#ipcalc -n -m –b 192.168.10.5/26
二:网络帧错
1.ping  ---网络检错
ping [-b broadcast]
ping [-c number] host
例:#ping 192.168.0.1
#ping –c 4 www.gd-linux.org
2.traceroute   ---路由跟踪
traceroute [-i interface] [-g gateway] [host|IP]
例:#traceroute –n www.sina.com.cn
#traceroute –m 10 www.gd-linux.org
#traceroute –v www.zsu.edu.cn
三:网络查询
1.netstat  ---查询正在侦听的端口
netstat [-r] [-i interface]
netstat [-antul] | more
例:#netstat –r
#netstat –anp |grep :22
2.host    域名解析
host [-a] domain_name
例:#host www.gd-linux.org
3.nslookup
nslookup [domain_name|IP]
例:#nslookup www.sina.com.cn
四:远程连接 
1. telnet 
telnet [-8] [host|IP] [port]
例:#telnet 192.168.1.1 23
2. ftp
ftp [-p] host [port]
例:#ftp 172.16.100.123
3.ncft
ncft [host]
五:文本状态网页浏览
1. lynx
文字界面下的网页浏览器
例:#lynx www.gd-linux.org
2. wget
利用FTP和HTTP协议来获取网站上的文件
例:#wget www.gd-linux.org

六:常用的网络相关配置文件
/etc/sysconfig/network   
/etc/sysconfig/network-scripts/ifcfg- eth0    ----配置ip地址等内容
/etc/hosts       
/etc/host.conf
/etc/resolv.conf
/etc/services
/etc/hosts.allow,/etc/hosts.deny    ----允许或决绝主机服务
/etc/protocols
/etc/modules.conf

你可能感兴趣的:(linux,网络配置)