This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__author__ = 'amulheirn' | |
# Create 8,000 export policies for use on 8,000 VRFs in Junos | |
# Used for type-approval-testing of customer MX960 | |
interface = '0/0/0' # Local source interface | |
startvrf = 1 # Start of the vrf range | |
endvrf = 8001 # End of the vrf range | |
for i in range (startvrf, endvrf): |