- 积分
- 877
- 鸿鹄币
- 个
- 好评度
- 点
- 精华
- 注册时间
- 2012-9-19
- 最后登录
- 1970-1-1
- 阅读权限
- 40
- 听众
- 收听
中级工程师
|
3鸿鹄币
各位先進你們好: 想請教大大幫忙
有一standard ACL 如下:
access-list 2 permit 10.10.0.10
access-list 2 pdeny 10.10.0.0 0.0.255.255
access-list 2 permit 10.0.0.0 0.255.255.255
interface FastEthernet 0/0
ip access-group 2 in
在第一條的ACL 我怎得知它是哪一個 wildmask. 我只知道它是一個 IP.
因為在正確答案里提到,From the 10.10.0.0 subnet, only traffic sourced from 10.10.0.10 is allowed; traffic sourced from the other 10.0.0.0 subnet also is allowed.
所以代表 10.10.0.10 的 wildmask 也是 0.0.255.255? 如何判斷?
謝謝大大指教 |
|
最佳答案
查看完整内容
1) 你没有把答案选项写出来;
2) 你提到的一点答案的信息里没有说它是来自于0.0.255.255 wildmask;
3)我想你把wildmask 和 submask给搞混了。
OK,首先, traffic过来的时候, 是没有submask信息的。submask只是本地有效,只是让本地那台设备知道如何判断过来的traffic的目的IP是否和本地IP是同一网段。 不同的结果导致本地设备有不同的方法去得到目的IP的MAC地址,然后把traffic送到下一跳。 有点扯远了。
Access l ...
|