linux redhat6.0 ip怎么配置?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux redhat6.0 ip怎么配置?相关的知识,希望对你有一定的参考价值。
用终端和手动两种方式。
手动:直接编辑配置文件vi /etc/syssconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
HWADDR= ;这里是你网卡的物理地址,通常检测到的网卡你就不用输入了
ONBOOT=yes
IPADDR=192.168.0.1 (这个IP地址根据你局域网情况分配)
NETMASK=255.255.255.0
GATEWAY= ;这里输入你的网关,路由器的IP地址
终端:
直接用输入setup,用终端来配置,根据提示来输入ip、网关、子网掩码 参考技术A redhat6.x的系统IP配置和redhat5.x及之前的版本差不多
但是6.x的版本有时候IP配置不上,或配置上了重启又没有了,
手工写ifcfg-eth0或setup都不行(其实setup也就是间接写入ifcfg-ethN配置文件中)
而且配置双IP有时也有问题,不像redhat5.x及之前的版本那么容易(大部分情况还是没问题的)。
这种情况下,你使用比较原始的方式:
配置单网卡双IP:
ip address add 192.168.0.3/24 broadcast 192.168.0.255 dev eth0
ip address add 192.168.0.4/24 broadcast 192.168.0.255 dev eth0 label eth0:1
或者:
ifconfig eth0 192.168.0.3 netmask 255.255.255.0 up
ifconfig eth0:1 192.168.0.4 netmask 255.255.255.0 up
然后把以上方法之一写入/etc/rc.local,祝你好运。 参考技术B 直接用setup就可以配置了
怎么配置rhel-source.repo
参考技术A 修改yum配置文件(修改前先备份配置文件):cp /etc/yum.repos.d/rhel-source.repo /etc/yum.repos.d/rhel-source.repo.bak
vi /etc/yum.repos.d/rhel-source.repo
[rhel-source] ---(仓库名称)
name=cdrom ---(名称随意)
baseurl=file:///yum -- (这个就是你要挂在的本地目录)
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[rhel-source-beta]
name=Red Hat Enterprise Linux $releasever Beta - $basearch - Source
baseurl=ftp://ftp.redhat.com/pub/redhat/linux/beta/$releasever/en/os/SRPMS/
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta,file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
4.修改yum.conf文件,相同选项尽量保持一致
vi /etc/yum.conf
[rhel-source] ---(仓库名称,尽量保持一致)
name=cdrom ---(尽量保持一致) 《Linux就该这么学》 初学者一起交流。
baseurl=file:///yum ---(这个就是你要挂在的本地目录,必须保持一致)
enable=1
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
exactarch=1
obsoletes=1
gpgcheck=0
plugins=1
installonly_limit=3
以上是关于linux redhat6.0 ip怎么配置?的主要内容,如果未能解决你的问题,请参考以下文章