cancel
Showing results for 
Search instead for 
Did you mean: 

VDX NOS - get all VEs IP addresses - how?

VDX NOS - get all VEs IP addresses - how?

Pawel_Eljasz
New Contributor II
hi everyone

maybe one-liner? Or any other commands lines?

many thanks, P.
1 ACCEPTED SOLUTION

Steve_Worrall
Extreme Employee
Hello Pawel,
I'm a bit late to this and I see that the discussion went off on a different track. But in answer to your original question, you could use the following

sw0# sh ip int br rb all | inc Ve|Status

Interface Rbridge IP-Address Vrf Status Protocol
Ve 100 63 192.168.253.163 mgmt-vrf up up
Ve 100 64 192.168.253.164 mgmt-vrf up up
sw0#

As you see this will give you the Ve interfaces for each RBridge and also status.

Steve

View solution in original post

21 REPLIES 21

Yulia_Abitbul
Extreme Employee
yes, unfortunately you can't run it only for VEs
Only for all interfaces, including all VEs (first command I sent)

Pawel_Eljasz
New Contributor II
I do appreciate your help I do and work with what I have.
It's just like a I say, one-liner for all IP addr.

I do:
code:
sw0# show ip interface ve

without specifying the interface and other vendors get me all ifaces & IP addresses(and related IP info something, since the command is "ip")

Yulia_Abitbul
Extreme Employee
It will work as well on NOS:
code:
sw0# show ip interface ve 236
Ve 236 is administratively down protocol is down
Primary Internet Address is 1.1.1.2/24 broadcast is 1.1.1.255
IP MTU is 1500
Proxy Arp is Enabled
Vrf : default-vrf


Pawel_Eljasz
New Contributor II
That makes me presume - no one-liner for all IP address...
And yes...
code:
sw0# show ip interface ve

was my first guess. Other vendors with something as above give me what's expected... and also IP address.

Yulia_Abitbul
Extreme Employee
if IP address is configured you should see it in show ip interface brief,
Check if the IP address is configured under Ve that you are looking for:
code:
sw0# show running-config rbridge-id 31 interface ve 236
rbridge-id 31
interface Ve 236
ip proxy-arp
ip address 1.1.1.2/24
shutdown
!

sw0# sh ip int br


Flags: U - Unnumbered interface
Interface IP-Address Vrf Status Protocol
========================== ========== ================== ==================== ========

TenGigabitEthernet 31/0/1 unassigned default-vrf up down
.
.
.
TenGigabitEthernet 31/0/48 unassigned default-vrf up down
Ve 236 1.1.1.2 default-vrf administratively down down
sw0#


GTM-P2G8KFN