Evil_TTL> show | s

View Learned Routes From Azure Gateway

Category:Microsoft -> Azure

One can use Azure Powershell to view learned routes from the gateway.
If one has connected ExpressRoute circuits to Virtual WAN, they can also view the default route table which will show all routes from all connected sources.

https://docs.microsoft.com/en-us/powershell/module/az.network/get-azvirtualnetworkgatewaylearnedroute?view=azps-5.9.0

PowerShell:

Get-AzVirtualNetworkGatewayLearnedRoute
   
-VirtualNetworkGatewayName <String>
   -
ResourceGroupName <String>
   
[-AsJob]
   [
-DefaultProfile <IAzureContextContainer>]
   [
<CommonParameters>

Example:

PS C:\Get-AzVirtualNetworkGatewayLearnedRoute -ResourceGroupName resourceGroup -VirtualNetworkGatewayname gatewayName

AsPath       
:
LocalAddress 10.1.0.254
Network      
10.1.0.0/16
NextHop      
:
Origin       Network
SourcePeer   
10.1.0.254
Weight       
32768

AsPath       
:
LocalAddress 10.1.0.254
Network      
10.0.0.254/32
NextHop      
:
Origin       Network
SourcePeer   
10.1.0.254
Weight       
32768

AsPath       
65515
LocalAddress 
10.1.0.254
Network      
10.0.0.0/16
NextHop      
10.0.0.254
Origin       
EBgp
SourcePeer   
10.0.0.254
Weight       
32768 

For the Azure virtual network gateway named gatewayname in resource group resourceGroup, retrieves routes the Azure gateway knows. The Azure virtual network gateway in this case has two static routes (10.1.0.0/16 and 10.0.0.254/32), as well as one route learned over BGP (10.0.0.0/16).

By privilege15