cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
dlazure
New Contributor III

Adtran 3448 routing between vlan questions

Hi

in my Adtran 3448 i have set up two vlans.

one vlan for data and one vlan for voice. they are named this way

Vlan 1 : Private 10.10.10.0/24

Vlan 2 : Voice 192.168.50.0/24

in the policy-class Private i have set up this : permit ip 10.10.10.0 0.0.0.255 192.168.50.0 0.0.0.255

in the policy-class Voice i have set up this : permit ip 192.168.50.0 0.0.0.255 10.10.10.0 0.0.0.255

when i am connected in the vlan 1 ( Private ) i cannot ping vlan 2

when i am connected in the vlan 2 ( voice ) i can ping vlan 1

where am i wrong ?

i attached the config file

Tags (3)
0 Kudos
2 Replies
Anonymous
Not applicable

Re: Adtran 3448 routing between vlan questions

It looks like you just need to identify the destination policy in your allow statements

In your policy-classes you have:

ip policy-class Private

  allow list private-to-voice stateless

  allow list self self

!

ip policy-class Public

  ! Implicit discard

!

ip policy-class Voice

  allow list voice-to-private stateless

  allow list web-acl-5 self stateless

!

Try updating them to look like this:

ip policy-class Private

  allow list private-to-voice policy Voice stateless

  allow list self self

!

ip policy-class Public

  ! Implicit discard

!

ip policy-class Voice

  allow list voice-to-private policy Private stateless

  allow list web-acl-5 self stateless

!

Anonymous
Not applicable

Re: Adtran 3448 routing between vlan questions

:

I went ahead and flagged this post as "Assumed Answered." If any of the responses on this thread assisted you, please mark them as Correct or Helpful as the case may be with the applicable buttons. This will make them visible and help other members of the community find solutions more easily. If you still need assistance, we would be more than happy to continue working with you on this - just let us know in a reply.

Thanks,

Levi