Next Previous Contents

5. 设定interfaces(界面)

5.1 不同的网路设备

一个节点存在不同的网路设备, 可以对它们进行如下分类:

Physically bounded(物理绑定)

包括 Ethernet 或者 Token-Ring 它们不需要特别的处理.

Virtually bounded(虚拟绑定)

需要特别的支持.

IPv6-in-IPv4 tunnel interfaces

这个interfaces(界面)也称作sitx, sit 是"Simple Internet Transition" 的缩写. 它可以将IPv6的数据包塞进IPv4, 通过IPv4到达另一个地点.

sit0 不能使用在专用的tunnels 上.

5.1.2.2. PPP interfaces

PPP interfaces 从IPv6 enabled PPP daemon 那里获得 IPv6 的能力.

5.1.2.3. ISDN HDLC interfaces

具有IP封装的HDLC IPv6 能力以经包含在核心当中.

5.1.2.4. ISDN PPP interfaces

目前不支持 ISDN PPP interfaces (ippp) aren't IPv6 enabled by kernel. Also there are also no plans to do that because in kernel 2.5.+ they will be replaced by a more generic ppp interface layer.

5.1.2.5. SLIP + PLIP

目前不支持Like mentioned earlier, this interfaces don't support IPv6 transport (sending is OK, but dispatching on receiving don't work).

5.1.2.6. Ether-tap device

Ether-tap devices使用自动的设定.在使用之前先将 "ethertap" 模块挂进来.

5.1.2.7. tun devices

就连我都还没试过呢! Currently not tested by me.

5.1.2.8. ATM

01/2002: vanilla的核心目前不支持, USAGI 的扩展支持ATM-IPv6

5.1.2.9. 其它的

我漏掉了什么?

5.2 Bringing interfaces up/down(设定界面的开/关)

使用 "ip"

使用方法:


# ip link set dev <interface> up
# ip link set dev <interface> down

例子:


# ip link set dev eth0 up
# ip link set dev eth0 down

使用 "ifconfig"

使用方法:


# /sbin/ifconfig <interface> up
# /sbin/ifconfig <interface> down
 

例子:


# /sbin/ifconfig eth0 up
# /sbin/ifconfig eth0 down


Next Previous Contents