我一直在玩网络游戏,所以我安装了GNS3网络模拟器。
我已经部署了ASA 8.4映像,它已经很好地加载了。
我把它和基本的Switch连接起来
switch-ASA
我已经在接口上配置了IP地址并执行了no shut。然后我试着把自己平了,但平没有用。
我也重新启动了GNS3,但没有工作:
interface GigabitEthernet0
no nameif
no security-level
ip address 192.168.56.2 255.255.255.0
!试图平平自己
fw01# ping 192.168.56.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.56.2, timeout is 2 seconds:
No route to host 192.168.56.2
Success rate is 0 percent (0/1)
fw01#发布于 2015-10-15 16:11:24
您需要设置接口名称,否则接口将无法到达。
例如:
interface gi0
nameif inside
ip address 10.0.0.1 255.255.255.0
no shutdown验证您的接口状态
show int ip brief发布于 2015-12-29 18:48:36
我相信您也为ASA中的接口设置了一个安全级别。据我所知,需要为每个接口配置三种东西:
名称安全级别IP地址
https://networkengineering.stackexchange.com/questions/23393
复制相似问题