在 Windows 中配置静态 IP 地址:

在 Windows 中配置静态 IP 地址:

是的,我刚刚重新加载了我的交换机,将其重置为完整的默认配置。它是 Cisco Catalyst 3560。我想要实现的是:为交换机提供一个 IP 地址,然后从我的计算机远程登录到它。

我目前所做的:

已断开与 wifi 的连接。输入 ipconfig,它显示以下内容 -Autoconfiguration IPv4 Address. . : 169.254.88.16

我认为这是我的笔记本电脑的 IP 地址。

我使用以下命令将笔记本电脑的 IP 地址指定为路由上的默认网关ip default-gateway 169.254.88.16

然后我进入 Vlan1 并输入 ip 地址192.168.1.100 255.255.255.0 为其提供一个 IP 地址。并输入 no shutdown。

然后我进入 FastEthernet 0/1 并输入switchport access vlan 1,但由于某种原因,它从未出现在配置中,它只是不接受命令,然后我输入了 no shutdown。

然后我打开电脑,ping 192.168.1.100,结果请求超时。我做错了什么?

这是我的配置 正在构建配置...

*Mar  1 00:18:07.465: %SYS-5-CONFIG_I: Configured from console by console
Current configuration : 2078 bytes
!
version 12.2
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Switch
!
boot-start-marker
boot-end-marker
!
!
no aaa new-model
system mtu routing 1500
ip subnet-zero
!
!
!
!
!
!
!
!
!
!
spanning-tree mode pvst
spanning-tree extend system-id
!
vlan internal allocation policy ascending
!
!
!
interface FastEthernet0/1
!
interface FastEthernet0/2
!
interface FastEthernet0/3
!
interface FastEthernet0/4
!
interface FastEthernet0/5
!
interface FastEthernet0/6
!
interface FastEthernet0/7
!
interface FastEthernet0/8
!
interface FastEthernet0/9
!
interface FastEthernet0/10
!
interface FastEthernet0/11
!
interface FastEthernet0/12
!
interface FastEthernet0/13
!
interface FastEthernet0/14
!
interface FastEthernet0/15
!
interface FastEthernet0/16
!
interface FastEthernet0/17
!
interface FastEthernet0/18
!
interface FastEthernet0/19
!
interface FastEthernet0/20
!
interface FastEthernet0/21
!
interface FastEthernet0/22
!
interface FastEthernet0/23
!
interface FastEthernet0/24
!
interface FastEthernet0/25
!
interface FastEthernet0/26
!
interface FastEthernet0/27
!
interface FastEthernet0/28
!
interface FastEthernet0/29
!
interface FastEthernet0/30
!
interface FastEthernet0/31
!
interface FastEthernet0/32
!
interface FastEthernet0/33
!
interface FastEthernet0/34
!
interface FastEthernet0/35
!
interface FastEthernet0/36
!
interface FastEthernet0/37
!
interface FastEthernet0/38
!
interface FastEthernet0/39
!
interface FastEthernet0/40
!
interface FastEthernet0/41
!
interface FastEthernet0/42
!
interface FastEthernet0/43
!
interface FastEthernet0/44
!
interface FastEthernet0/45
!
interface FastEthernet0/46
!
interface FastEthernet0/47
!
interface FastEthernet0/48
!
interface GigabitEthernet0/1
!
interface GigabitEthernet0/2
!
interface GigabitEthernet0/3
!
interface GigabitEthernet0/4
!
interface Vlan1
 ip address 192.168.1.100 255.255.255.0
!
ip default-gateway 169.254.88.16
ip classless
ip http server
ip http secure-server
!
!
control-plane
!
!
line con 0
line vty 5 15
!
end

答案1

需要注意的是,你的主机和交换机需要位于同一个子网以便建立彼此之间的网络连接。为此,您需要分配一个静态 IP 地址你们俩主持人转变


在 Windows 中配置静态 IP 地址:

  1. 在 Windows 8 中,按Windows Key+X然后W快速访问菜单。否则,Network And Sharing Center通过Windows资源管理器
  2. 右键单击您想要配置 IP 地址的接口。
  3. 在界面的上下文菜单中单击Properties
  4. 向下滚动并单击以选择IPv4
  5. 单击Properties按钮。
  6. 单击以选中单选Use the following IP address按钮。
  7. 使用 0.0.0.0 - 255.255.255.255 之间的 IP 地址(不包括环回地址,其始终为 127.0.0.1)。
    • 我建议使用192.168.1.x(其中 x 是 0 到 255 之间的数字)作为地址,因为它很常见。
  8. 对于子网掩码,我建议使用255.255.255.0。这将允许您为网络上的主机分配 254 个地址。您不能使用 0 或 255 作为所选 IP 地址。如果您想了解有关子网划分的更多信息,可以单击这里
  9. 默认网关将是您分配给交换机的 IP 地址。交换机的 IP 地址应为192.168.1.x(其中 x 与步骤 7 中的项目符号具有相同的范围,但在该范围内为不同的数字,以避免 IP 地址冲突)和子网掩码为255.255.255.0
  10. 您可以保留 DNS 配置不变,因为听起来您还不会执行 DNS 查找。
  11. 点击OK

Microsoft 已发布一篇有关如何执行此操作的文章,您可以通过单击找到这里

思科入门交换机指南也会对你有所帮助;点击即可找到这里

这里是思科的软件配置指南要得到远程登录在您的交换机上进行设置。

相关内容