В общем получилось да не совсем
Пример
vlan 100 ip 172.31.0.0/24
vlan 101 ip 172.31.101.0/24
vlan 102 ip 172.31.102.0/24
Задача, vlan 101 нет связи с vlan 102, vlan 102 нет связи vlan 101, vlan 101 и 102 должны видеть vlan 100
Примечание: на каждый влан есть свой dhcp сервер, который сидит в той же подсети
Вот правила с которыми, как мне казалось все гуд
Код:
Разрешаем
create access_profile ip source 255.255.255.0 dest 255.255.255.0 vlan prof 10
conf access_prof prof 10 add access_id auto ip source 172.31.101.0 dest 172.31.101.0 vlan VLAN101 port all permit
conf access_prof prof 10 add access_id auto ip source 172.31.0.0 dest 172.31.101.0 vlan VLAN101 port all permit
conf access_prof prof 10 add access_id auto ip source 172.31.101.0 dest 172.31.0.0 vlan VLAN101 port all permit
сonf access_prof prof 10 add access_id auto ip source 172.31.102.0 dest 172.31.102.0 vlan VLAN102 port all permit
conf access_prof prof 10 add access_id auto ip source 172.31.0.0 dest 172.31.102.0 vlan VLAN102 port all permit
conf access_prof prof 10 add access_id auto ip source 172.31.102.0 dest 172.31.0.0 vlan VLAN102 port all permit
Запрещаем
create access_profile ip source 0.0.0.0 dest 0.0.0.0 vlan prof 11
conf access_prof prof 11 add access_id auto ip source 0.0.0.0 dest 0.0.0.0 vlan VLAN101 port all deny
conf access_prof prof 11 add access_id auto ip source 0.0.0.0 dest 0.0.0.0 vlan VLAN102 port all deny
Все работает все идет куда надо, но как только абонент конектится к сети и вот вот должен получить адрес, он его не получает.
Вот такая беда.