查看: 66|回覆: 0

[Debian] Debian-linux 网卡配置

[複製鏈接]

5

主題

0

回帖

0

積分

热心网友

金币
0
閲讀權限
220
精華
0
威望
0
贡献
0
在線時間
0 小時
註冊時間
2012-5-13
發表於 2020-3-19 15:41:00 | 顯示全部樓層 |閲讀模式

Debian 网卡配置在 /etc/network/interfaces

 Debian网卡配置

 

#网桥的配置
auto lo
iface lo inet loopback

iface enp5s0f0 inet manual

iface enp5s0f1 inet dhcp

auto vmbr0
iface vmbr0 inet static
        address 10.40.64.142
        netmask 255.255.255.0
        gateway 10.40.64.254
        bridge_ports enp5s0f0
        bridge_stp off
        bridge_fd 0

#单网卡的手动配置
auto eth0 #开机自动启动
iface eth0 inet static #静态IP设置
        address 192.168.0.10 #本机IP
        netmask 255.255.255.0 #子网掩码
        gateway 192.168.0.1 #网关
    
#dhcp方式
iface eth0 inet dhcp

#设置dns
echo "nameserver 114.114.114.114" >> /etc/resolv.conf

#配置好后重启网卡
ifdown eth0 && ifup eth0
或者
service networking restart
                    

 

回覆

使用道具 舉報

您需要登錄後才可以回帖 登錄 | 立即注册

本版積分規則

相关侵权、举报、投诉及建议等,请发 E-mail:qiongdian@foxmail.com

Powered by Discuz! X5.0 © 2001-2026 Discuz! Team.

在本版发帖返回顶部