Forum Discussion

EddieV_26235's avatar
EddieV_26235
Icon for Nimbostratus rankNimbostratus
Jan 14, 2012

One F5 interface connecting Cisco Trunk port

Hello,

 

 

This seemed at first to be quite simple until I received "Requested member (1.1) is untagged on another VLAN". I'm sure in the end it will be quite simple. I just can't seem to get the right commands to get it to work.

 

 

 

Simply put, I need to configure interface 1.1 on the F5 with two vlans. I tried searching the forums but couldn't get the exact information I needed.

 

 

 

 

 

Here's what I tried:

 

 

 

create net vlan vlan_4 { tag 4 interfaces add { 1.1 } }

 

create net vlan vlan_14 { tag 14 interfaces add { 1.1 } }

 

01070259:3: Requested member (1.1) is untagged on another VLAN

 

 

 

 

As you can see I didn't make it very far. I've started to go cross eyed reading some of the forum posts as I understand Cisco lingo but the terms are used different in the F5 domain.

 

 

 

Help

 

 

 

 

 

2 Replies

  • e.g.

    root@B3600-R67-S40(Active)(tmos) create net vlan vlan_4 { tag 4 interfaces add { 1.1 { tagged } } }
    root@B3600-R67-S40(Active)(tmos) create net vlan vlan_14 { tag 14 interfaces add { 1.1 { tagged } } }
    root@B3600-R67-S40(Active)(tmos) list net vlan
    net vlan vlan_4 {
        interfaces {
            1.1 {
                tagged
            }
        }
        tag 4
    }
    net vlan vlan_14 {
        interfaces {
            1.1 {
                tagged
            }
        }
        tag 14
    }
    
  • That was it. I couldn't figure out where it would except the "tagged" statement.

     

     

    Big thanks!