cisco870分配IP

cisco870分配IP

我会尽量简短。我已成功启用 Cisco 870 上的 http 服务器选项,现在我需要访问它并使用基于 Web 的配置。我还没有找到如何为路由器本身分配 IP。我该怎么做?

答案1

您可以将 IP 地址分配给物理(以太网)接口或包含一个或多个接口的 VLAN;默认配置是所有接口位于 VLAN 1 上,因此最简单的方法是给它分配一个 IP 地址。

那将是:

! Enters configuration mode
configure terminal

! Enters configuration of interface VLAN 1
interface vlan1

! Configures IP address and subnet mask
ip address <IP ADDRESS> <SUBNET MASK>

! Assure interface is not down
no shutdown

! Exits configuration of interface VLAN 1
end

! Exits configuration mode
exit

例子:

configure terminal
interface vlan1
ip address 192.168.0.1 255.255.255.0
no shutdown
end
exit

相关内容