这是我遇到的难题:我之前使用过思科的 RV320 路由器,之前曾使用 WAN1 连接到 ISP 给定的静态 IP:
IP: 215.114.xxx.xxx
Sub: 255.255.255.224
Gateway: 215.114.xxx.xxx
LAN setup:
192.168.1.x
255.255.255.0
Gateway: 192.168.1.1
在 RV320 上这很简单,只需输入 Wan1 的这些设置即可。我的问题是,当使用 890 路由器的 CLI 时,似乎几乎需要使用两个快速以太网(WAN 端口)来完成相同的任务。我可以在 fa0/0 上设置 ip 以反映 LAN 网络(能够内部 ping)或 WAN(能够连接到 ISP),但似乎无法像以前一样使用单个 WAN 端口完成此操作。我在这里遗漏了什么,如何在不使用 WAN 端口的情况下为路由器分配内部 IP,然后仅使用交换机端口连接到我的 LAN?
编辑并解决:
看来我已经设法弄清楚了我的问题,所以我会为可能感兴趣的人发帖。这是两个问题的结合 A) 我的 DHCP 池没有访问正确的路由器地址,我后来将其更改为:
216.113.118.231
B) 我没有启用 VLAN1。如果有人对我的设置有任何建议,我很乐意在这里提出,但看起来我最初的问题已经解决了。
我在 PacketTracer 中制定的示例配置(不是真实 IP):
version 12.4
no service timestamps log datetime msec
no service timestamps debug datetime msec
service password-encryption
!
hostname r1
!
!
!
enable password 7 0832494D1B1C11571F0F5E567B782726
!
!
ip dhcp excluded-address 192.168.1.1
!
ip dhcp pool LAN
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
dns-server 8.8.8.8
!
!
!
username admin privilege 15 password 7 080A1D400E315407025B5F053E38
!
!
!
!
!
!
!
spanning-tree mode pvst
!
!
!
!
interface FastEthernet0/0
description outside world
ip address 216.113.118.231 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface FastEthernet0/1/0
switchport mode access
shutdown
!
interface FastEthernet0/1/1
switchport mode access
spanning-tree portfast
!
interface FastEthernet0/1/2
switchport mode access
spanning-tree portfast
!
interface FastEthernet0/1/3
switchport mode access
spanning-tree portfast
!
interface Vlan1
no ip address
shutdown
!
ip classless
ip route 0.0.0.0 0.0.0.0 216.113.115.249
!
!
!
!
!
!
!
line con 0
exec-timeout 0 0
password 7 080A1D400E315407025B5F053E38
logging synchronous
login local
line vty 0 4
exec-timeout 0 0
password 7 080A1D400E315407025B5F053E38
logging synchronous
login local
line vty 5 15
exec-timeout 0 0
password 7 080A1D400E315407025B5F053E38
logging synchronous
login local
!
!
!
end
答案1
看来我已经设法弄清楚了我的问题,所以我会为可能感兴趣的人发帖。这是两个问题的结合 A) 我的 DHCP 池没有访问正确的路由器地址,我后来将其更改为:
216.113.118.231
B) 我没有启用 VLAN1。如果有人对我的设置有任何建议,我很乐意在这里提出,但看起来我最初的问题已经解决了。