Mode Trunk on A10

cvacacvaca Member
edited February 27 in System

I am trying to make a Layer 2 configuration so that my A10 allows traffic from multiple VLANs on one interface, since I will connect it to a switch where my Internet outputs are and in my internal network I have multiple VLANs that I want to have Internet connection.

This is the example of topology

I would like to perform the equivalent of the configuration in Cisco

interface xyx
switchport trunk encapsulation dot1q
switchport mode trunk

I would really appreciate your help.

Tagged:

Comments

  • sevrensevren Member, A10ers

    Hello,

    First you need to enable the interface

    interface ethernet 1

    enable

    then you need to define the vlan that you are planning to pass them over this link. My understanding is that ACOS device will communicate with two different internet service provider over a switch. In that perspective L3 configuration will be done over ve interfaces. Example

    Vlan 10 and Vlan 20 represents Internet 1 and Internet 2 respectively

    vlan 10

    tagged ethernet 1

    name int1

    router-interface ve 10

    vlan 20

    tagged ethernet 1

    name int2

    router-interface ve 20

    The last step will be to assign L3 information on each ve interface

    interface ve 10

    ip address 10.1.1.1 /24

    interface ve 20

    ip address 10.1.2.1 /24

    This is the way of how to terminate multiple VLANs on ACOS device. Here assuming that ACOS device will be the gateway of Internal network towards Internet 1 and Internet 2. Also assuming that internal network has different L3 information and routing between internal and int1 & int2 will be done by ACOS device.

Sign In or Register to comment.