You are browsing a read-only backup copy of Wikitech. The live site can be found at wikitech.wikimedia.org
Homer: Difference between revisions
imported>Ayounsi (→TODO) |
imported>Ayounsi |
||
Line 121: | Line 121: | ||
protocols {} | protocols {} | ||
routing-options {} | routing-options {} | ||
virtual-chassis {} | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 127: | Line 128: | ||
chassis {} # https://gerrit.wikimedia.org/r/c/operations/homer/public/+/550389 | chassis {} # https://gerrit.wikimedia.org/r/c/operations/homer/public/+/550389 | ||
interfaces {} | interfaces {} | ||
vlans {} # https://gerrit.wikimedia.org/r/c/operations/homer/public/+/550376 | vlans {} # https://gerrit.wikimedia.org/r/c/operations/homer/public/+/550376 | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 180: | Line 180: | ||
(Almost) None. | (Almost) None. | ||
* The "commit" action doesn't work on the SRXs | * The "commit" action doesn't work on the SRXs, it will do the Juniper's "commit confirmed 2", but not the "commit check" to make the change permanent. |
Revision as of 15:05, 16 December 2019
Homer (previously jnt) is our homemade network configuration manager.
It takes variables from Netbox and yaml files, run them through jinja templates to generate Juniper compatible configuration.
Homer can then send those configurations to selected network devices, for a diff or a safe commit.
The tool is written to not be Wikimedia specific. It only supports Junos but can easily be extended to other platforms.
Its doc is available on https://doc.wikimedia.org/homer/master/
Its code on Gerrit https://gerrit.wikimedia.org/g/operations/software/homer
Its bug and feature requests on Phabricator: https://phabricator.wikimedia.org/tag/homer/
This page focuses on Wikimedia's deployment.
Deployment
Homer is deployed via Puppet and Scap to the cumin (fleet management) hosts.
You can find its deploy repository here https://gerrit.wikimedia.org/g/operations/software/homer/deploy
And its Puppet module there https://gerrit.wikimedia.org/r/plugins/gitiles/operations/puppet/+/production/modules/homer
In addition it's available on Pypi: https://pypi.org/project/homer/
Releasing a new version
Riccardo?
Daily diffs (not ready yet)
A cron job will run Homer every day to compare the live network configuration with our intended state. Any discrepancies will be emailed to someone (ideally a list) to be fixed.
Usage 🚀
From cumin hosts (recommended, but not ready yet)
Get familiar with the command line: https://doc.wikimedia.org/homer/master/homer.html everything else is taken care of.
The public repository is regularly updated by Puppet.
When pushing configurations, homer will ssh to the network devices using the Homer user. You need to be in the ops group to be able to use its private key.
From your local machine (less recommended, but your only option so far)
- Clone the public repo: https://gerrit.wikimedia.org/g/operations/homer/public
- Clone private repo: ssh://cumin1001.eqiad.wmnet:/srv/homer/private
- Install Homer with either:
pip install homer
https://gerrit.wikimedia.org/g/operations/homer
+python3 setup.py install
(if you live on the edge)
- Create your configuration file to match https://doc.wikimedia.org/homer/master/configuration.html
- Get familiar with the command line: https://doc.wikimedia.org/homer/master/homer.html
When pushing configurations, your machine will ssh directly to the network devices, which mean that you have to have an account there, with the proper permissions.
It's common to test a change locally with the "diff" option. Once satisfied with the result, please merge your change on Gerrit before pushing them with the "commit" action.
Making changes
Note that Homer explicitly asks you when its about to modify the live network configuration (Type "yes" to commit, "no" to abort.
) and will prompt you with a diff of the changes beforehand.
Editing the private repository
Manually edit then commit the files on ssh://cumin1001.eqiad.wmnet:/srv/homer/private .
git will sync them with the other cumin host. And will email a summary of the changes to Riccardo (TODO: change it to SREs).
Make sure to mirror all your changes on the mock-private repo: https://gerrit.wikimedia.org/g/operations/homer/mock-private
This repository doesn't have CI, please be extra careful.
Editing the public repository
Similar to our other public repositories, send CRs to https://gerrit.wikimedia.org/g/operations/homer/public , try not to +2 your changes.
This repository doesn't have CI yet, please be extra careful.
Style guides
YAML files
TBD
Templates
It's ok to give up on indentation.
Network configuration coverage
CR
Done
groups {}
system {}
logical-systems {}
services {}
snmp {}
forwarding-options {}
protocols {
ospf {}
ospf3 {}
lldp {}
}
policy-options {}
firewall {}
TODO
interfaces {} # (Partial) https://gerrit.wikimedia.org/r/c/operations/homer/public/+/547584
routing-options {} # (Partial) https://gerrit.wikimedia.org/r/c/operations/homer/public/+/547587
apply-groups [ re0 re1 ]; # https://gerrit.wikimedia.org/r/#/c/operations/homer/public/+/549690
chassis {} # (Partial) https://gerrit.wikimedia.org/r/c/operations/homer/public/+/550389
protocols {
router-advertisement {}
bgp {} # Out of scope
pim {} # https://gerrit.wikimedia.org/r/c/operations/homer/public/+/549689
}
routing-instances {}
ASW
Done
system {}
snmp {}
protocols {}
routing-options {}
virtual-chassis {}
TODO
chassis {} # https://gerrit.wikimedia.org/r/c/operations/homer/public/+/550389
interfaces {}
vlans {} # https://gerrit.wikimedia.org/r/c/operations/homer/public/+/550376
MR
Done
system {}
snmp {}
protocols {}
routing-options {}
policy-options {}
security {
zones {}
alg {}
forwarding-options {}
screen {}
}
TODO
groups {}
interfaces {}
security {
address-book {} # Capirca?
nat {}
policies {} # Capirca?
}
routing-instances {}
applications {} # Capirca?
MSW
Done
system {}
snmp {}
protocols {}
routing-options {}
vlans {}
TODO
interfaces {}
Common/known issues
(Almost) None.
- The "commit" action doesn't work on the SRXs, it will do the Juniper's "commit confirmed 2", but not the "commit check" to make the change permanent.