Linux网络配置


修改主机名

  • vi /etc/sysconfig/network

NETWORKING=yes
HOSTNAME=server1.itcast.cn

修改ip地址

  • vi /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0
TYPE=Ethernet
ONBOOT=yes #是否开机启用
BOOTPROTO=static #ip地址设置为静态
IPADDR=192.168.0.101
NETMASK=255.255.255.0

  • service network restart

配置网关

修改ipaddr的配置文件

  • vim /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0 #描述网卡对应的设备别名,例如ifcfg-eth0的文件中它为eth0
HWADDR=00:0C:29:8D:1A:5A #对应的网卡物理地址
TYPE=Ethernet
UUID=a1a50709-b2e1-4c0b-ae44-01da84863386 #通用唯一识别码 (Universally Unique Identifier)
ONBOOT=yes #系统启动时是否设置此网络接口,设置为yes时,系统启动时激活此设备
NM_CONTROLLED=yes #network manger的参数,实时生效,修改后无需要重启网卡立即生效。
BOOTPROTO=static #设置网卡获得ip地址的方式,可能的选项为static,dhcp或bootp,分别对应静态指定的 ip地址,通过dhcp协议获得的ip地址,通过bootp协议获得的ip地址
NETMASK=255.255.255.0 #网卡对应的网络掩码
IPADDR=192.168.199.93
GATEWAY=192.168.199.1

修改网关

  • vim /etc/sysconfig/network

NETWORKING=yes #表示系统是否使用网络,一般设置为yes。如果设为no,则不能使用网络,而且很多系统服务程序将无法启动
HOSTNAME=Centos-shaocongshuai #设置本机的主机名,这里设置的主机名要和/etc/hosts中设置的主机名对应
GATEWAY=192.168.199.1

修改dns

  • vim /etc/resolv.conf

# Generated by NetworkManager
# No nameservers found; try putting DNS servers into your
# ifcfg files in /etc/sysconfig/network-scripts like so:
#
# DNS1=xxx.xxx.xxx.xxx
# DNS2=xxx.xxx.xxx.xxx
# DOMAIN=lab.foo.com bar.foo.com
nameserver 4.2.2.2 #微软的dns
nameserver 8.8.8.8 #谷歌的dns

  • 微软DNS 4.2.2.1 4.2.2.2
  • comodoDNS 156.154.70.25 156.154.71.25
  • 谷歌DNS 8.8.8.8 8.8.4.4
  • openDNS 208.67.220.220 208.67.222.220

重新启动网络配置

  • service network restart
  • /etc/init.d/network restart

注意:

  • 当出现下面问题

http://mirror.vodien.com/centos/6.8/os/x86_64/Packages/tree-1.5.3-3.el6.x86_64.rpm: [Errno 14] PYCURL ERROR 6 - "Couldn't resolve host 'mirror.vodien.com'"
Trying other mirror.
Error Downloading Packages:
tree-1.5.3-3.el6.x86_64: failure: Packages/tree-1.5.3-3.el6.x86_64.rpm from base: [Errno 256] No more mirrors to try.

  • 则查看dns的配置文件

(网关的配置文件改变之后,dns 的配置文件就会变化)

修改ip地址和主机名的映射关系

  • vi /etc/hosts

127.0.0.1 localhost localhost.localdomain localhost4
localhost4.localdomain4
::1 localhost localhost.localdomain localhost6

关闭iptables并设置其开机启动/不启动

  • service iptables stop
  • chkconfig iptables on
  • chkconfig iptables off

批量自动删除rpm包

  • rpm -qa | grep mysql | while read c; do rpm -e $c --nodeps; done

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