知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

如何完成Linux网络地址配置

发布时间:2012-07-10 23:36:16作者:知识屋

1.关闭与开启网路端口:  开启81端口:
  iptables -I INPUT -i eth0 -p tcp --dport 81 -j ACCEPT
  iptables -I OUTPUT -o eth0 -p tcp --sport 81 -j ACCEPT
  关闭81端口:
  iptables -I INPUT -i eth0 -p tcp --dport 81 -j DROP
  iptables -I OUTPUT -o eth0 -p tcp --sport 81 -j DROP
  2.关闭和开启物理端口
  UP: ifconfig eth0 up
  DOWN: ifconfig eth0 down
  或
  /sbin/ifup eth0
  /sbin/ifdown eth0
  /sbin/ifup   ifdown 是对/etc/sysconfig/network-scripts/ifup   down 的符号链接
  3.网路地址的配置
  a.ifconfig eth0 x.x.x.x netmask x.x.x.x broadcast x.x.x.
  b.通过配置文件配置
  /etc/sysconfig/network-scripts/下配置ifcfg-xx的文件
  如:ifcfg-eth0
  如果想要在一块网卡上配置多个地址,则配置文件为ifcfg-eth0:1,ifcfg-eth0:2等
  c.重启network服务,/etc/init.d/network restart或service network restart
  这样就轻松完成Linux网络地址配置了。
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜