Export or Backup Azure Route Table into CSV using PowerShell

 There could be many use cases where you may want to export Azure route tables into CSV. Here is the PowerShell script that you can use to export Azure Route Tables into CSV using PowerShell script. This script will export Azure Route Tables along with routes of all Active subscriptions into a CSV.


$outputfinal=@()
foreach ( $Subscription in $(Get-AzSubscription| Where-Object {$_.State -ne "Disabled"}) )
{
Select-AzSubscription -SubscriptionId $Subscription.SubscriptionId

$rts=Get-AzureRmroutetable
foreach ($rt in $rts) 
$routes=$rt.routes 
foreach ($route in $routes) 
$Outputtemp = “” | SELECT RTName,RGName,Location,RouteName,AddressPrefix,NextHopType,NextHopIPAddress
$outputtemp.RTName=$rt.name 
$outputtemp.RGName=$rt.Resourcegroupname 
$outputtemp.location=$rt.location 
$outputtemp.routename=$route.Name 
$outputtemp.AddressPrefix=$route.AddressPrefix 
$outputtemp.nexthoptype=$route.nexthoptype 
$outputtemp.NextHopIPAddress=$route.NextHopIPAddress 
$outputfinal += $outputtemp } }
$outputfinal |export-csv ./clouddrive/.cloudconsole/RouteTables_"$((Get-Date).ToString("yyyyMMdd_HHmmss")).csv" -NoTypeInformation

 

Following is the sample output of this script




If you want to export the CSV to Azure Storage file share, you can remove the last line from above script and add following lines.

$outputfinal | Export-Csv "$Env:temp/RouteTables" -NoTypeInformation

$resourceGroupName="myresourcegroup"  
$storageAccName="mystorageaccount" 
$fileShareName="myfileshare"  
$fileName="$Env:temp/RouteTables" 
$folderPath="/" 

Function UploadFiles  
{   Set-AzContext -SubscriptionId 2gdj2342-gl39-390r-h208-84957dg897g8
    $ctx=(Get-AzStorageAccount -ResourceGroupName $resourceGroupName -Name $storageAccName).Context  
    Set-AzStorageFileContent -ShareName $fileShareName -context $ctx -Source $fileName -Path $folderPath/"RouteTables_$((Get-Date).ToString("yyyyMMdd_HHmmss")).csv" 
}  
UploadFiles      
 


If you are looking for a script that can export Azure Route Tables the similar way, you can check out the script at Export or Backup Network Security Groups into CSV using PowerShell


 

Comments

Popular posts from this blog

Anyconnect SSL-Client VPN with Self-signed Certificate on Cisco ASA

Filtering Routes in BGP using Route-maps and Prefix-list

Open Shortest Path First (OSPF)

IKEv2 IPsec Site-to-Site VPN configuration on Cisco ASA 8.4(x)

IPsec VPN as a Backup for Point-to-Point Link using IP SLA

Border Gateway Protocol (BGP)

Cisco ASA Active/Active Failover Configuration

Bypassing Proxy Server in Google Chrome

Cisco ASA Active/Standby Failover Configuration