这是我的 Juniper 上新配置的 VLAN:
vlans {
vlan1 {
vlan-id 3;
l3-interface vlan.1;
}
}
interfaces {
vlan {
unit 1 {
family inet {
sampling {
input;
output;
}
address 10.1.0.1/24;
}
}
}
}
如果我将 PC 静态设置为10.1.0.2
子网掩码为,则255.255.0.0
可以 ping/访问 Juniper。但是,如果我将 PC 设置为10.1.2.2
相同的子网,则无法访问它。
显然,我对 VLAN 和子网划分还不熟悉,但我的理解是,使用掩码,255.255.0.0
我就可以访问10.1.*.*.
我需要做什么才能将我的工作站设置为10.1.2.x
并访问 上的网络设备10.1.0.x
和 上的服务器10.1.1.x
?我在 Juniper 上遗漏了什么吗?
答案1
在...的帮助下http://tools.v8dev.net/IPv4_SubnetCalculator/10.1.0.0/,我改为address 10.1.0.1/24;
,address 10.1.0.1/16;
当然现在可以正常工作了。