How to add an IP to a VLAN interface? Brocade VDX NOS 6.0x
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-14-2018 12:36 PM
I've inherited a VDX 6740T and I'm trying to add an IP to a vlan / vlan interface. VLAN has been created and assigned to the appropriate ports as tagged, and I've created a VE interface with matching ID. However, I'm unsure how to add an IP to this.
Anyone familiar with the Brocade VDX NOS?
Anyone familiar with the Brocade VDX NOS?
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎10-02-2018 09:24 AM
Does this switch support Voice Traffic.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-15-2018 08:52 AM
VDX does not have a dual mode as such
If you set native VLAN as untagged this may acheive the desired outcome
interface TenGigabitEthernet 1/0/1
no switchport trunk tag native-vlan See http://www.brocade.com/content/html/en/configuration-guide/nos-700-l2guide/GUID-73EDD343-D4CB-4990-A...
If you set native VLAN as untagged this may acheive the desired outcome
interface TenGigabitEthernet 1/0/1
no switchport trunk tag native-vlan See http://www.brocade.com/content/html/en/configuration-guide/nos-700-l2guide/GUID-73EDD343-D4CB-4990-A...
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-14-2018 12:56 PM
Create VLAN
interface vlan 10Create VE & IP under Rbridge configuration
rbridge-id 1
interface Ve 10
ip address 192.168.1.1/24
!
no shutdown
VLAN untagged on interface
interface TenGigabitEthernet 1/0/1
switchport
switchport mode access
switchport access vlan 10
no shutdownOr VLAN tagged on interface
interface TenGigabitEthernet 1/0/1
switchport
switchport
switchport mode trunk
switchport trunk allowed vlan add 10
switchport trunk tag native-vlan
no shutdown
Hope this helps
interface vlan 10Create VE & IP under Rbridge configuration
rbridge-id 1
interface Ve 10
ip address 192.168.1.1/24
!
no shutdown
VLAN untagged on interface
interface TenGigabitEthernet 1/0/1
switchport
switchport mode access
switchport access vlan 10
no shutdownOr VLAN tagged on interface
interface TenGigabitEthernet 1/0/1
switchport
switchport
switchport mode trunk
switchport trunk allowed vlan add 10
switchport trunk tag native-vlan
no shutdown
Hope this helps
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎02-14-2018 12:56 PM
Same thing but for > 7.2.0a1 please?
