• Gentoo网络配置


    网卡识别配置

    要开始配置你的网卡,你首先需要告诉Gentoo RC系统你的网卡。
    可以用ifconfig命令查看自己网卡名字:

    ifconfig -a
    

    网卡名字(如eth0)的识别是通过在/etc/init.d目录里建立一个指向net.lo的符号链接来实现。

    cd /etc/init.d
    ln -s net.lo net.eth0
    

    启动和停止网络脚本

    /etc/init.d/net.eth0 start
    /etc/init.d/net.eth0 stop
    rc-update add net.eth0 default  #设置开机启动eth0
    

    网络配置

    命令方式(临时配置,重启后失效):

    设置网络包括了三个步骤:

    • 使用ifconfig配置ip地址:
    ifconfig eth0 192.168.1.10 broadcast 192.168.1.255 netmask 255.255.255.0 up
    
    • 使用route来设定路由的网关:
    route add default gw 192.168.1.1
    
    • 创建/etc/resolv.conf配置DNS:
    nano -w /etc/resolv.conf
    

    nameserver $202.99.166.4
    nameserver $202.99.160.68

    配置文件方式:

    编辑网络配置文件/etc/conf.d/net和/etc/resolv.conf。

    • 编辑/etc/conf.d/net配置主机IP地址、子网掩码和网关:
    nano -w /etc/conf.d/net
    

    使用CIDR形式表示的静态IP:

    config_eth0="192.168.1.7/24"
    routes_eth0="default via 192.168.1.1"
    

    使用netmask形式表示的静态IP

    config_eth0="192.168.1.7 broadcast 192.168.1.255 netmask 255.255.255.0"
    routes_eth0="default via 192.168.1.1"
    

    注意: 如果你没有指定,DHCP是默认选项。

    测试:

    • 测试是否能ping的通网关:
    ping 192.168.1.1
    

    如果能ping通,ip设置没错误。

    • 测试DNS:

    编辑/etc/resolv.conf配置DNS:

    nano /etc/resolv.conf
    

    在其中加入以下两行内容:

    nameserver 202.99.160.68
    nameserver 202.99.166.4
    

    测试DNS解析是否正常:

    ping www.baidu.com
    

    如果能ping通,DNS设置无误。

  • 相关阅读:
    潜水一年,然后回来
    【搬运】Visual Studio vs2017 vs2019 中文离线安装包下载,替代ISO镜像
    Re0:在 .NetCore中 EF的基本使用
    Re0:在.NetCore 中Dapper的基本用法
    jdadjkgh.txt
    Android Studio打包出来的安装包是非正式发布版本
    Android Studio生成开发调试版(Debug)和正式发布版(Release)的安装包
    【unity-2】coroutine
    【ugui-1】RectTransformUtility
    [ps笔记]快捷键、快捷方式
  • 原文地址:https://www.cnblogs.com/wonux/p/5238710.html
Copyright © 2020-2023  润新知