Skip to content
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