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

以下各值常见于所有的基本配置文件中:
* DEVICE=name,这里name是物理设备的名字(动态分配的PPP设备应当除外,
它的名字是“逻辑名”。
* IPADDR=addr, 这里addr是IP地址。
* NETMASK=mask, 这里mask是网络掩码。
* NETWORK=addr, 这里addr是网络地址。
* BROADCAST=addr, 这里addr是广播地址。
* GATEWAY=addr, 这里addr是网关地址。
* ONBOOT=answer, 这里answer取下列值之一:
o yes -- 该设备将在boot时被激活。
o no -- 该设备不在boot时激活。
* USERCTL=answer, 这里answer取下列值之一:
o yes --非root用户可以控制该设备。
o no -- 非root用户不允许控制该设备。
* BOOTPROTO=proto, 这里proto取下列值之一:
o none -- 不使用boot时协议。
o bootp -- 使用bootp协议。
o dhcp --使用dhcp协议。

*************************************************************************

DEVICE=eth0                             接口名称
BOOTPROTO=none                  静态配置,若该值为“dhcp”则为动态获得,另外 static也是表示静态ip地址
BROADCAST=192.168.10.255  广播地址,通过IP地址和子网掩码自动计算得到
HWADDR=00:13:D3:27:9F:80  
IPADDR=192.168.10.238
IPV6INIT=yes
IPV6_AUTOCONF=yes
NETMASK=255.255.255.0
NETWORK=192.168.10.0        指定网络,通过IP地址和子网掩码自动计算得到
ONBOOT=yes                          开机时自动加载
GATEWAY=192.168.10.1
TYPE=Ethernet
PEERDNS=yes
USERCTL=no

ifdown eth0               关闭网络
ifconfig eth0 down    关闭网络

ifup eth0                   开启网络
ifconfig eth0 up         开启网络

设置dns  /etc/resolv.conf

nameserver 61.144.56.101
nameserver 202.96.128.166

[[email protected] ~]$ cat /etc/resolv.conf 
# Generated by NetworkManager
nameserver 202.96.128.86
nameserver 202.96.128.166

其他方面
service network start             //启动网络服务
service network stop              //停止网络服务
service network restart           //重启网络服务
service network status            //查看网络服务状态

ifconfig eth0 192.168.10.222 netmask 255.255.255.0 //临时修改接口IP地址(无需重启接口)

[[email protected] ~]$ sudo ifconfig wlan0 192.168.21.199 netmask 255.255.255.0
[[email protected] ~]$ ifconfig wlan0
wlan0 Link encap:Ethernet  HWaddr 00:02:72:77:BB:D1  
inet addr:192.168.21.199  Bcast:192.168.21.255  Mask:255.255.255.0
inet6 addr: fe80::202:72ff:fe77:bbd1/64 Scope:Link
UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
RX packets:3246 errors:0 dropped:0 overruns:0 frame:0
TX packets:1947 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000 
RX bytes:4514869 (4.3 MiB)  TX bytes:177732 (173.5 KiB)
wlan0             表示第一块无线以太网卡
Link encap        表示该网卡位于OSI物理层(Physical Layer)的名称
HWaddr             表示网卡的MAC地址(Hardware Address)
inet addr            表示该网卡在TCP/IP网络中的IP地址
Bcast                  表示广播地址(Broad Address)
Mask                  表示子网掩码(Subnet Mask)
MTU                  表示最大传送单元,不同局域网 MTU值不一定相同,对以太网来说,MTU的默认设置是1500个字节
Metric                表示度量值,通常用于计算路由成本
RX                      表示接收的数据包
TX                      表示发送的数据包
collisions          表示数据包冲突的次数
txqueuelen       表示传送列队(Transfer Queue)长度
interrupt            表示该网卡的IRQ中断号
Base address     表示I/O地址

配置虚拟网卡IP地址:网卡需要拥有多个IP地址

命令格式:  ifconfig 网卡名:虚拟网卡ID IP地址 netmask 子网掩码

[[email protected] ~]$ sudo ifconfig wlan0:1 192.168.21.188 netmask 255.255.255.0

更改网卡MAC地址

ifconfig 网卡名 hw ether MAC地址

[[email protected] ~]$ ifconfig wlan0 hw ether 00:11:22:33:44:55

SIOCSIFHWADDR: 不允许的操作
[[email protected] ~]$ sudo ifconfig wlan0 hw ether 00:11:22:33:44:55
SIOCSIFHWADDR: 设备或资源忙
[[email protected] ~]$ ifconfig wlan0 down
SIOCSIFFLAGS: 权限不够
[[email protected] ~]$ sudo ifconfig wlan0 down
[[email protected] ~]$ sudo ifconfig wlan0 hw ether 00:11:22:33:44:55
更改成功

[[email protected] ~]$ netstat -ant 查看端口信息 a 所有 n数字显示 t tcp协议 u udp协议
Active Internet connections (servers and established 已建立连接)
Proto Recv-Q Send-Q Local Address               Foreign Address             State      
协议                               本地地址                          远程地址                  连接状态
类型
tcp        0      0 0.0.0.0:57798               0.0.0.0:*                   LISTEN      listen表示监听状态
tcp        0      0 0.0.0.0:111                 0.0.0.0:*                   LISTEN      
tcp        0      0 192.168.122.1:53            0.0.0.0:*                   LISTEN      
tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN      
tcp        0      0 127.0.0.1:631               0.0.0.0:*                   LISTEN      
tcp        0      0 127.0.0.1:25                0.0.0.0:*                   LISTEN      
tcp        0      0 :::111                      :::*                        LISTEN      
tcp        0      0 :::22                       :::*                        LISTEN      
tcp        0      0 ::1:631                     :::*                        LISTEN

[[email protected] ~]$ netstat -r  查看路由表
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
192.168.21.0    *               255.255.255.0   U         0 0          0 wlan0
192.168.122.0   *               255.255.255.0   U         0 0          0 virbr0
default         192.168.21.1    0.0.0.0         UG        0 0          0 wlan0

[[email protected] ~]$ netstat -i   查看网络接口状态
Kernel Interface table
Iface       MTU Met    RX-OK RX-ERR RX-DRP RX-OVR    TX-OK TX-ERR TX-DRP TX-OVR Flg     
eth0       1500   0        0      0      0      0        0      0      0      0 BMU
lo         16436   0      230      0      0      0      230      0      0      0 LRU
virbr0     1500   0        0      0      0      0       29      0      0      0 BMRU
wlan0      1500   0    10546      0      0      0     7060      0      0      0 BMRU
wmaster0      0   0        0      0      0      0        0      0      0      0 RU
[[email protected] ~]$

MTU字段:表示最大传输单元,即网络接口传输数据包的最大值。 
Met字段:表示度量值,越小优先级越高。 
RX-OK/TX-OK分别表示接收、发送的数据包数量。 
RX-ERR/TX-ERR表示接收、发送的错误数据包数量。 
RX-DRP/TX-DRP表示丢弃的数量。 
RX-OVR/TX-OVR表示丢失数据包数量。

[[email protected] ~]$ nslookup www.baidu.com  测试域名解析
Server:        202.96.128.86
Address:    202.96.128.86#53

Non-authoritative answer:
www.baidu.com    canonical name = www.a.shifen.com.
Name:    www.a.shifen.com
Address: 121.14.89.10
Name:    www.a.shifen.com
Address: 121.14.88.76

时间: 2024-10-13 12:17:44

/etc/sysconfig/network-scripts/ifcfg-eth0的相关文章

centos linux中怎么查看和修改计算机名/etc/sysconfig/network

centos linux中怎么查看和修改计算机名 查看计算机名:在终端输入hostname 修改的话 hostname +计算机名(重启后失效)要永久修改的话要修改配置文件/etc/sysconfig/network修改hostname=你要改的名字

关于linux /etc/sysconfig/network中的NOZEROCONF=yes参数

今天从CSSD Fails to Join the Cluster After Private Network Recovered if avahi Daemon is up and Running (Doc ID 1501093.1)文章中看到了这个参数, 在该文章中,有如下的论述: Solution The solution is to shutdown and disable 3rd party zeroconf mDNS process, in this case, avahi-daem

重启network不能识别eth0

Shutting down interface eth0:  Error: Device 'eth0' (/org/freedesktop/NetworkManager/Devices/0) disconnecting failed: This device is not active 使用这个命令,先chkconfig NetworkManager on 然后使用命令chkconfig NetworkManager off 然后再使用 service network start

network scripts 配置中 默认路由的配置

在多网卡环境中,默认路由的选择经常会成为一个比较头疼的问题. 本文讲红帽的LINUX关于/etc/sysconfig/network-scripts中默认路由策略使用. 在/etc/sysconfig/network-scripts中,ifcfg-XXX中有一个option是 DEFROUTE.根据文档中描述是是否设置成默认路由的interface. 而经笔者实验,就算将你要的interface中这个option开成yes,也有可能选择其他interface作为default routing的.

LVS (Linux Virtual Server)集群项目实践

LVS (LinuxVirtual Server)集群项目实践 实验目的:通过实验可以熟练规划和配置集群项目 实验环境:Red Hat Enterprise Linux Server release 6.4 实验前提:请确保实验前看过 LVS 中文站点 实验说明:本实验只是以实现负载均衡为目标,并没有考虑如共享存储等,这方面问题在以后的实验中 会添加. 实验步骤: 一.LVS 系统模型 二.LVS 调度算法 三.负载平衡方法 四.常用术语介绍 五.NAT 方式架设 六.DR方式架设 一.LVS

shell 变成100例

本文摘自:https://zhuanlan.zhihu.com/p/84529054 侵权必删!!!!! 1.编写hello world脚本 #!/bin/bash # 编写hello world脚本 echo "Hello World!" 2.通过位置变量创建 Linux 系统账户及密码 #!/bin/bash # 通过位置变量创建 Linux 系统账户及密码 #$1 是执行脚本的第一个参数,$2 是执行脚本的第二个参数 useradd "$1" echo &qu

linux下网卡bonding配置

章节 bonding技术 centos7配置bonding centos6配置bonding 一.bonding技术 bonding(绑定)是一种linux系统下的网卡绑定技术,可以把服务器上n个物理网卡在系统内部抽象(绑定)成一个逻辑上的网卡,能够提升网络吞吐量.实现网络冗余.负载等功能,有很多优势. bonding技术是linux系统内核层面实现的,它是一个内核模块(驱动).使用它需要系统有这个模块, 我们可以modinfo命令查看下这个模块的信息, 一般来说都支持.  modinfo bo

Linux Bonding

https://www.cnblogs.com/huangweimin/articles/6527058.html 管理 章节 bonding技术 centos7配置bonding centos6配置bonding 一.bonding技术 bonding(绑定)是一种linux系统下的网卡绑定技术,可以把服务器上n个物理网卡在系统内部抽象(绑定)成一个逻辑上的网卡,能够提升网络吞吐量.实现网络冗余.负载等功能,有很多优势. bonding技术是linux系统内核层面实现的,它是一个内核模块(驱动

学习日志---Linux网络配置ssh

如何配置linux的网络以及如何使用ssh连接: ifconfig etho [ip地址]:占时设定该虚拟机上的ip地址 1, 修改主机名    /etc/sysconfig/network2,  修改eth0    /etc/sysconfig/network-scripts/ifcfg-eth0DEVICE=eth0TYPE=Ethernet 开机启动ONBOOT=yesNM_CONTROLLED=yesBOOTPROTO=static网络配置IPADDR=192.168.1.201NETM

suse 10 网卡绑定

Suse10网卡绑定 1.建立配置文件 localhost:/etc/sysconfig/network #touch /etc/modprobe.d/bonding.conf localhost:/etc/sysconfig/network #vim /etc/modprobe.d/bonding.conf alias bond0 bonding options bond0 miimon=100 mode=1 2.配置网卡 localhost:/etc/sysconfig/network #