1、使用命令“ifconfigeth0192.168.1.x”设置eth0的IP;2、在“vSphereClient”中更改适配器类型即可。
arp(Address,Resolution,Protocol)协议,即地址解析协议。是网络层的重要组成部分。
1)如果只是简单的实现上网功能,很容易实现, 先配置你的网卡IP,eth0为你外网IP(比如:60.0.0.1),eth1内网地址(比如:192.168.1.1)2) echo 1 >/proc/sys/net/ipv4/ip_forward
{#vi /etc/sysctl.conf
net.ipv4.ip_forward = 1}
3)、打开iptables的NAT功能:
/sbin/iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
说明:上面的语句中eth0是连接外网或者连接Internet的网卡. 执行下面的命令,保存iptables的规则: service iptables save
4)、查看路由表:
netstat -rn 或 route -n
5)、查看iptables规则:
iptables -L
/etc 是Linux下的一个目录,在很多的配置过程中我们很可能都接触过它,关于 etc 的字面意思,有人说是“et cetera” (直译是“等等,用于放其它目录下不匹配的东西,什么杂七杂八的都有”),也有传言说是"Editable Text Configuration",也有人戏说是“Every Thing Config”,但是至今没有一个明确的定论。The file system hierarchy standard [ FSHS ] explains /etc as follows :
It further goes on to say :
While this is the long and short of the matter, some believe that '/etc' is indeed an acronym and stands for "Editable Text Configuration". Oh well, the media is still not out with the verdict.
/etc/group 文件是管理Linux的用户组的文件,一般的group文件形式如下所示:
该文件的解读方法如下所示:
Ref:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)