zoukankan      html  css  js  c++  java
  • ubuntu 14.04网卡配置以及关闭防火墙

    一、Ubuntu网卡配置如下:

    在文件/etc/network/interfaces中进行以下配置

    auto lo

    iface lo inet lookback

    auto eth0

    iface eth0 inet static

    address 192.168.1.150

    netmask 255.255.255.0

    gateway 192.168.1.1

    network 192.168.0.0

    broadcast 192.168.1.255

    在/etc/resolv.conf 添加dns

    nameserver 114.114.114.114

    完成以上配置后,需要重启网卡,重启方式(如果其中一种方式不可以,请尝试另外一种)

    1、sudo /etc/init.d/networking restart

    2、sudo ifconfig eth0 down

         sudo ifconfig eth1 up

    3、sudo ifdown eth0

         sudo ifup eth0

    二、防火墙

    1、Ubuntu14.0.4开启

        ufw enable

    2、Ubuntu14.0.4关闭

        ufw disable

    3、卸载iptables

    apt-get remove iptables

    4、关闭Ubuntu14.0.4的iptables的相关命令

    iptables -P INPUT ACCEPT
    iptables -P FORWARD ACCEPT
    iptables -P OUTPUT ACCEPT
    iptables -F

  • 相关阅读:
    作业
    Java总结
    十四周总结
    十二周课程总结
    十一周总结
    自我介绍
    第二次
    第十二周作业
    第九周作业
    第十三周课程总结
  • 原文地址:https://www.cnblogs.com/wclwcw/p/6140263.html
Copyright © 2011-2022 走看看