Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fanout]: remove vrf management in arista fanout deploy templates #562

Merged
merged 1 commit into from
Apr 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ansible/roles/fanout/templates/arista_7060_deploy.j2
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ interface {{ intf }}
!
interface Management 1
description TO LAB MGMT SWITCH
vrf forwarding management
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Guess this is required for management traffic isolation. Why do we've to remove this?

ip address {{ device_info["ManagementIp"] }}
no shutdown
!
Expand All @@ -96,6 +95,7 @@ mac address-table reserved forward 0180.c200.0002
# LLDP packets pass through
mac address-table reserved forward 0180.c200.000e
!
ip route 0.0.0.0/0 {{ device_info["ManagementGw"] }}
ip route vrf management 0.0.0.0/0 {{ device_info["ManagementGw"] }}
!
ip routing
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/fanout/templates/arista_7260_deploy.j2
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ interface {{ intf }}
!
interface Management 1
description TO LAB MGMT SWITCH
vrf forwarding management
ip address {{ device_info["ManagementIp"] }}
no shutdown
!
Expand All @@ -63,6 +62,7 @@ mac address-table reserved forward 0180.c200.0002
# LLDP packets pass through
mac address-table reserved forward 0180.c200.000e
!
ip route 0.0.0.0/0 {{ device_info["ManagementGw"] }}
ip route vrf management 0.0.0.0/0 {{ device_info["ManagementGw"] }}
!
ip routing
Expand Down