Centos6.6 网络设置

在linux中,网卡用eth0 、eth1、eth2来表示
有三种方法配置网络:1.通过命令行  (配置临时生效)
                                2.通过图形化界面 (永久生效)
                                3.通过修改配置文件(永久生效)

一、通过命令行来配置网络:

配置IP地址:

ifconfig          查看所有活跃的网络信息(禁用、停用的网卡查看不了)

ifconfig  –a      查看全部网卡信息包括不活跃的网卡

ifconfig  eth0    只查看eth0这张网卡的网络信息

1.二层分装方式:Ethernet

2.硬件地址MAC地址

3.ipv4地址

4.广播地址

5.子掩码

6.IPv6信息

7.网卡状态

8.RX接收了多少个包、错误多少个包,TX发送了多少个包、错误多少个包等信息

9.一共接收了RX多少数据  一共发送TX多少个数据

IP地址配置:

修改eth0这张网卡的IP地址为192.168.1.103 子掩码为:255.255.255.0 并激活

[[email protected] ~]# ifconfig  eth0  192.168.1.103  netmask  255.255.255.0  up

[[email protected] ~]#ifconfig eth0 down          把eth0给暂停了
[[email protected] ~]#ifconfig eth0 up              把eth0 给激活
[[email protected] ~]#ifdown eth0                    把eth0停用
[[email protected] ~]#ifup eth0                         把eth0启用
[[email protected] ~]#service network restart    重启网络

配置网关:

[[email protected] ~]#route –n                                           查看本机的网关,-n防止它做反向解释
[[email protected] ~]#route add default gw 192.168.30.1                   给网卡添加一个默认网关,为192.168.30.1
[[email protected] ~]#route delete default gw 192.168.30.1                删除192.168.30.1这个默认网关
[[email protected] ~]#route add default gw 192.168.30.1 dev eth0          指定给eth0这张网卡添加192.168.30.1为默认网关

注:所添加的网关必须要和网卡的IP在同一个网段,否则报错

配置DNS:

[[email protected] ~]#nslookup       查看本机DNS
[[email protected] ~]#server 1.1.1.1   配置DNS地址

主机名:

[[email protected] ~]#hostname  显示主机名  如:goodluck.baidu.com
[[email protected] ~]#hostname  显示短主机名如:goodluck 后面的域名就不填写了
[[email protected] ~]#hostname www.51cto.com  配置主机名


注:通过命令行配置主机名也只是临时生效

二、图形化界面配置

[[email protected] ~]#setup

在图形化界面配置中可以对以下内容进行配置:

authentication configuration:身份证配置

firewall configuration:防火墙配置

network configuration:网络 配置

System services :系统服务
选择网络配置 回车

device configuration:ip配置

dns configuration:dns配置

选择ip配置回车

选择第一个张网卡eth0  回车

use dhcp:自动获取 必须要有dhcp 服务器 如果没有 将 * 换成空格 手动填写
static ip:ip地址
netmask:子网掩码
default gateway id:默认网关
primary dns server:dns服务器地址 【首选】
secondary dns server:备用dns服务器地址
设置好后:按table键:依次 OK--》Save--》save&quit--》quit

重启网络 输入命令 /etc/init.d/network restart 回车

[[email protected] ~]# /etc/init.d/network restart
Shutting down interface eth0:                              [  OK  ]
Shutting down loopback interface:                          [  OK  ]
Bringing up loopback interface:                            [  OK  ]
Bringing up interface eth0:  
Determining IP information for eth0... done.
                                                           [  OK  ]

查看ip地址 ifconfig

[[email protected] ~]# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:0C:29:2C:38:A2  
          inet addr:192.168.1.137  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:29ff:fe2c:38a2/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:23079 errors:0 dropped:0 overruns:0 frame:0
          TX packets:209 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:3530979 (3.3 MiB)  TX bytes:34701 (33.8 KiB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)

三、通过修改配置文件

在/etc/sysconfig/network-scripts/目录中修改ifcfg-eth0 这张网卡的网络信息

[[email protected] ~]# cd /etc/sysconfig/network-scripts/
[[email protected] network-scripts]# ls
ifcfg-eth0   ifdown-ipv6    ifdown-tunnel  ifup-ipv6   ifup-routes       network-functions
ifcfg-lo     ifdown-isdn    ifup           ifup-isdn   ifup-sit          network-functions-ipv6
ifdown       ifdown-post    ifup-aliases   ifup-plip   ifup-tunnel
ifdown-bnep  ifdown-ppp     ifup-bnep      ifup-plusb  ifup-wireless
ifdown-eth   ifdown-routes  ifup-eth       ifup-post   init.ipv6-global
ifdown-ippp  ifdown-sit     ifup-ippp      ifup-ppp    net.hotplug

查看网卡ifcfg-eth0配置文件内容

[[email protected] network-scripts]# cat ifcfg-eth0 
DEVICE=eth0
HWADDR=00:0C:29:2C:38:A2
TYPE=Ethernet
UUID=7b348e66-ffa3-4bb5-b03c-204ed29f5916
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=dhcp

DEVICE: 网卡名称   ,   HWADDR :网卡硬件地址  ,   TYPE :网卡类型,   UUID : 网卡的ID,

ONBOOT:重启系统后是否自动启动网卡 ,

NM_CONTROLLED:设备eth0是否可以由Network Manager图形管理工具托管

BOOTPROTO:启动协议是dhcp自动获取方式

当选择系统启动时手功配置IP

[[email protected] ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 
DEVICE=eth0
HWADDR=00:0c:29:2c:38:a2
TYPE=Ethernet
UUID=7b348e66-ffa3-4bb5-b03c-204ed29f5916
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=none
IPADDR=192.168.1.137
NETMASK=255.255.255.0
DNS2=8.8.8.8
GATEWAY=192.168.1.1
DNS1=202.96.128.86
IPV6INIT=no
USERCTL=no

修改DNS

[[email protected] ~]# vim /etc/resolv.conf
; generated by /sbin/dhclient-script
nameserver 202.96.128.86
nameserver 8.8.8.8

修改主机名

[[email protected] ~]# vim /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=centos.com
时间: 2024-09-30 06:58:12

Centos6.6 网络设置的相关文章

CentOS6.5网络设置

CentOS6.5网络设置 不知道哪里做错了,长时间无法连接网络,百度了各种还是不可以.最后自己提取了以前可以联网的配置粘贴过来,成功.配置文件内容如下: vim /etc/resolv.conf 1 generated by /sbin/dhclient-script 2 search localdomain 3 nameserver 192.168.75.2 [[email protected] ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth

虚拟机oracle virtualbox 上安装centos6.5 网络设置

上篇文章写到,在虚拟机上安装centos6.5,结果依照文章非常顺利的安装了,可是用yum安装软件的时候.报错,源有问题,不能下载,然后ping一下摆渡.非常悲催 dns解析不了,cat /etc/resolv.conf  ,发现为空,加入例如以下解析 watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" >

centOS6.6网络设置

linux的网卡IP地址是存放在文件中的,这个配置文件在/etc/sysconfig/network-scripts下,       名称分别为ifcfg-eth0,ifcfg-eth1等 如果你只有一块网卡,就只有ifcfg-eth0一个文件,       如果你有两块或者两块以上的网卡,就会有ifcfg-eth1.ifcfg-eth2等文件的出现. ========================================================================

CentOS6.9 网络设置

一.临时设置IP地址 ifconfig eth0 192.168.42.119 broadcast 192.168.42.129 netmask 255.255.255.0 二.上述方法只能临时生效,需要永久生效需要配置文件, 配置/etc/sysconfig/network-scripts/ifcfg-eth0 ONBOOT=yes NM_CONTROLLED=yes BOOTPROTO=static IPADDR=192.168.42.119 GATEWAY=192.168.42.119 D

CentOS6.6图文详细安装教程(有些设置大部分教程没出现过,附带网络设置等)

Centos6.6 下载地址:thunder://QUFodHRwOi8vbGludXguemh1YW5neGl0b25nLmNvbTo4MDgvMjAxNTAxL0NlbnRPUy02LjYteDg2XzY0LWJpbi1EVkQxLmlzb1pa 1.首先要下载一个centos的iso镜像,我是用虚拟机VMware来安装的,用VMware最好创建一个空白硬盘. 2.创建完毕再设置里面挂载iso的centos系统文件. 3.进入到这个页面: 说明: 1.install or upgrade a

CentOS 网络设置修改 指定IP地址 DNS 网关(转)

CentOS 网络设置修改 指定IP地址 DNS 网关(实测 笔记) 环境: 系统硬件:vmware vsphere (CPU:2*4核,内存2G) 系统版本:Centos-6.5-x86_64 路由器网关:192.168.1.1 步骤: 1.查看网络MAC地址 [[email protected] ~]# cat /etc/udev/rules.d/70-persistent-net.rules 显示如下信息 # PCI device 0x15ad:0x07b0 (vmxnet3) SUBSY

CentOS网络设置 couldn't resolve host 'mirrorlist.centos.org问题解决

今天在虚拟机上安装完CentOS6.5之后,首次使用时yum命令安装软件时,出现一堆的"couldn't resolve host 'mirrorlist.centos.org"这个问题. 上网上查了半天,很多都说在/etc/resolv.conf文件末尾添加下边这几段 [plain] view plain copy nameserver 8.8.8.8 nameserver 8.8.4.4 serchdomain localdomain ...布拉布拉布拉...如是云云... 可我试

VMWare虚拟机下RedHat 9.0linux的网络设置

VMWare虚拟机下安装的RedHat 9.0 linux有三种方式实现上网,桥接.nat.host-only.本来想用桥接方式的,可总是因为配置网络出现问题而不能上网,还把 sygate4.5(代理服务器软件)给安装上去配置也没用.没办法 ,还是用nat方式去配置,虚拟机linux下NAT上网配置和我用的windows xp3不一样,linux要想用NAT方式上网还需进行另外的设置,试了N多遍,最后才发现,我把linux的DNS配置错了,真想哭啊,这点小错误浪费 了我这么多时间.不废话了,还是

day08 网络设置、软件包管理

网络设置 1 ifconfig //最小化安装时不可用,需要安装安装包,命令为查看网卡信息 2 yum install net-tools 3 4 mtu 网卡的最大发送字节 5 6 iptables -F 清掉防火墙配置 7 setenforce 0 表示临时关闭selinux防火墙 8 9 10 ifconfig eno16777736(网卡号) 192.168.103/24 11 12 ifconfig eno16777736:0(虚拟出一块网卡) 192.168.16.104//24 1