以谁为师 发表于 2016-3-14 10:32:12

linux系统网络配置笔记

本帖最后由 以谁为师 于 2016-3-14 10:36 编辑

命令配置的都是临时地址,要永久生效还是要修改配置文件!

临时命令:
#ifconfig eth0 192.168.0.22 netmask 255.255.255.0
#ip addr add 192.168.0.22/24 dev eth0
添加第一块网卡ip 与子网掩码

#route add default gw 192.168.0.1 dev eth0   
添加缺省路由    gw =gateway 网关 dev eth0设备的第一个网卡
#route add -net 192.168.1.0/24 gw 192.168.0.1
添加静态路由route -n 查看路由表条目
route add 为添加 route del ××× 为删除

Redhat Centos
vi/etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0设备名称
BOOTPROTO=dhcp /static自动获取/静态ip
IPADDR=IP地址
NETMASK=掩码
GATEWAY=网关
ONBOOT=yes开机激活网卡

#service network restart重启网络
(单网卡双ip配置
cp ifcfg-eth0 ifcfg-eth0:1
配置文件设备名
DEVICE=eth0         改为eth0:1 )



Ubuntu
$sudo vi /etc/network/interfaces
iface eth0 inet dhcp(自动获取ip)
auto eth0
iface eth0 inet static(设置为静态)
address 192.168.0.22
netmask 255.255.255.0
gateway 192.168.0.1

$ sudo /etc/init.d/networking restart 重启网络

#auto eth0:1 #单网卡设置多个IP
#iface eth0:1 inet static
#address 192.168.1.60
#netmask 255.255.255.0
#network x.x.x.x
#broadcast x.x.x.x
#gateway x.x.x.x




DNS 配置               
(没有它不能解析域名 只可以访问ip)
vi /etc/resolv.conf
nameserver8.8.8.8
nameserver 202.xx.xx.xx    最多能添加3个
主机名
vi /etc/sysconfig/network
HOSTNAME=server1


本地hosts 文件指定域名对应ip
vi /etc/hosts
10.51.11.1 www.aaa.com


查看网卡UUID
nmclic

查看硬盘UUID
blkid

fireworld 发表于 2016-3-15 16:28:14

非常感谢

wilist 发表于 2016-3-16 04:22:33

支持中国红客联盟(ihonker.org)

admin1964 发表于 2016-3-16 07:02:18

我是来水经验的……

ruguoruo 发表于 2016-3-16 07:51:06

我是来水经验的……

asion 发表于 2016-3-16 08:58:33

非常感谢

HUC-参谋长 发表于 2016-3-16 10:27:57

我是来水经验的……

云游者 发表于 2016-3-16 11:55:45

小龙 发表于 2016-3-16 15:17:19

非常感谢

perble 发表于 2016-3-16 17:44:11

支持中国红客联盟(ihonker.org)
页: [1] 2 3 4 5 6 7 8 9 10
查看完整版本: linux系统网络配置笔记