Skip to content

Commit

Permalink
Changes default switch model to qfx5100-48s (#348)
Browse files Browse the repository at this point in the history
The new Ziply "full" sites in Portland (PDX02), Seattle (SEA10) and Spokane
(GEG01) are going to be using Juniper QFX5100-24Q switches, and will be on
40Gbps uplinks. This commit adds the suffix "-48s" to the default switch model
for physical sites. The new Ziply sites will have a model of "qfx5100-24q". The
switch-config repository will be configured with a new template for the 24Q
model.
  • Loading branch information
nkinkade authored Oct 3, 2024
1 parent ba6c6c0 commit 9b0cfd6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
6 changes: 4 additions & 2 deletions sites/_default.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,12 @@ site {
auto_negotiation: 'yes',
flow_control: 'no',
make: 'juniper',
model: 'qfx5100',
model: 'qfx5100-48s',
rstp: 'yes',
uplink_port: (
if $.transit.uplink == '10g' then
if $.transit.uplink == '40g' then
'et-0/0/23'
else if $.transit.uplink == '10g' then
'xe-0/0/45'
else if $.transit.uplink == '1g' then
'ge-0/0/47'
Expand Down
5 changes: 4 additions & 1 deletion sites/geg01.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ sitesDefault {
},
transit+: {
provider: '"Wholesail networks LLC',
uplink: '10g',
uplink: '40g',
asn: 'AS20055',
},
location+: {
Expand All @@ -42,6 +42,9 @@ sitesDefault {
latitude: 47.6200,
longitude: -117.5339,
},
switch+: {
model: 'qfx5100-24q',
},
lifecycle+: {
created: '2024-04-22',
},
Expand Down
5 changes: 4 additions & 1 deletion sites/pdx02.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ sitesDefault {
},
transit+: {
provider: 'Wholesail networks LLC',
uplink: '10g',
uplink: '40g',
asn: 'AS20055',
},
location+: {
Expand All @@ -42,6 +42,9 @@ sitesDefault {
latitude: 45.5886,
longitude: -122.5975,
},
switch+: {
model: 'qfx5100-24q',
},
lifecycle+: {
created: '2024-04-22',
},
Expand Down
5 changes: 4 additions & 1 deletion sites/sea10.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ sitesDefault {
},
transit+: {
provider: 'Wholesail networks LLC',
uplink: '10g',
uplink: '40g',
asn: 'AS20055',
},
location+: {
Expand All @@ -42,6 +42,9 @@ sitesDefault {
latitude: 47.4489,
longitude: -122.3094,
},
switch+: {
model: 'qfx5100-24q',
},
lifecycle+: {
created: '2024-04-22',
},
Expand Down

0 comments on commit 9b0cfd6

Please sign in to comment.