Debian配置网卡

8

0. ifconfig命令查看

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:49 errors:0 dropped:0 overruns:0 frame:0
          TX packets:49 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:5197 (5.0 KiB)  TX bytes:5197 (5.0 KiB)

1. 文件内容

Debian网卡的配置文件在/etc/network/interfaces中。

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

2. 配置DHCP方式

auto eth0
iface eth0 inet dhcp

3. 配置静态IP地址

auto eth0
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
# network 10.168.1.0
# broadcast 10.168.1.255
gateway 10.168.1.1

说明:auto eth0表示系统启动网络时自动开启相应的网络设备
补充:当网卡多个IP

auto eth0:1
iface eth0:1 inet static
address 192.168.0.10
netmask 255.255.255.0
gateway 10.168.0.1

4. 配置DNS

文件/etc/resolv.conf,添加:

nameserver 8.8.8.8

5. 重启网卡

/etc/init.d/networking restart

6. 高级

/usr/share/doc/ifupdown/examples中例子使用mapping机制,可以使网卡在不同环境中自动切换IP地址。

  • 1
    点赞
  • 24
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值