Hooks
May 18, 2026 ยท View on GitHub
You can define an arbitrary number of hooks that subscribe to different events. The hook system is modular and different kind of hook types can be enabled.
- Events
- Hook types
Configuration
Following configuration keys need to be defined for all hooks:
events: which events to subscribe. Needs to be an array. See below for the list of available events.type: what hook class to use. See below for the list of available hook types.
Events
node_success: triggered when configuration is successfully pulled from a node and right before storing the configuration.node_fail: triggered afterretriesamount of failed node pulls.post_store: triggered after node configuration is stored (this is executed only when the configuration has changed).nodes_done: triggered after finished fetching all nodes.
Hook type: exec
The exec hook type allows users to run an arbitrary shell command or a binary when triggered.
The command is executed on a separate child process either in synchronous or asynchronous fashion. Non-zero exit values cause errors to be logged. STDOUT and STDERR are currently not collected.
Command is executed with the following environment:
OX_EVENT
OX_NODE_NAME
OX_NODE_IP
OX_NODE_FROM
OX_NODE_MSG
OX_NODE_GROUP
OX_NODE_MODEL
OX_JOB_STATUS
OX_JOB_TIME
OX_REPO_COMMITREF
OX_REPO_NAME
OX_ERR_TYPE
OX_ERR_REASON
Exec hook recognizes the following configuration keys:
timeout: hard timeout (in seconds) for the command execution. SIGTERM will be sent to the child process after the timeout has elapsed. Default:60async: Execute the command in an asynchronous fashion. The main thread by default will wait for the hook command execution to complete. Set this totruefor long running commands so node configuration pulls are not blocked. Default:falsecmd: command to run.
Exec Hook configuration example
hooks:
name_for_example_hook1:
type: exec
events: [node_success]
cmd: 'echo "Node success $OX_NODE_NAME" >> /tmp/ox_node_success.log'
name_for_example_hook2:
type: exec
events: [post_store, node_fail]
cmd: 'echo "Doing long running stuff for $OX_NODE_NAME" >> /tmp/ox_node_stuff.log; sleep 60'
async: true
timeout: 120
Exec Hook configuration example to send mail
To send mail you need the package msmtp (It is pre-installed with the docker container)
You then need to update the ~/.msmtprc file to contain your SMTP credentials like this:
Note: In the docker container the file is in /home/oxidized/.config/oxidized/.msmtprc so you can create the file if it doesn't exist in your oxidized config folder.
# Default settings
defaults
auth on
tls on
# Outlook SMTP
account mainaccount
host smtp.office365.com
port 587
from user@domain.com
user user@domain.com
password edit-password
account default : mainaccount
For non docker users this file should have the 600 permission, using: chmod 600 .msmtprc and the owner of the file should be the owner of oxidized chown oxidized:oxidized .msmtprc
Then, you can configure Hooks to send mail like this:
hooks:
send_mail_hook:
type: exec
events: [node_fail]
cmd: '/usr/bin/echo -e "Subject: [Oxidized] Error on node $OX_NODE_NAME \n\nThe device $OX_NODE_NAME has not been backed-up, reason: \n\n$OX_EVENT: $OX_ERR_REASON" | msmtp destination@domain.com'
Hook type: githubrepo
The githubrepo hook executes a git push to a configured remote_repo when
the specified event is triggered.
Configuration keys
| Key | Description |
|---|---|
remote_repo | The remote repository to push to. Use a URL string (no groups) or a group dictionary (see Using groups). |
username | Username for authentication. Defaults to the user part of the remote_repo URI, falling back to git. |
password | Password for username/password authentication. |
privatekey | Path to the private key file. Must be in legacy PEM format (see note below). |
publickey | Path to the public key file (optional โ inferred from privatekey + .pub if omitted). |
Notes:
remote_repomust not match the name of any localgitoutput repo configured underoutput. Use unique names for each.- If using SSH key authentication with a passphrase-protected private key, provide the passphrase with the
OXIDIZED_SSH_PASSPHRASEenvironment variable. - The
privatekeymust be in the legacy PEM format (BEGIN RSA PRIVATE KEY), not the newer OpenSSH format (BEGIN OPENSSH PRIVATE KEY). See #1877 and #2324. - To convert an existing key to PEM format, run:
ssh-keygen -p -m PEM -f $MY_KEY_HERE
Authentication methods
Choose one of the following methods:
| Method | Required keys |
|---|---|
| Username + password | username (optional), password |
| SSH key pair | privatekey, publickey (optional - assumed to be at privatekey + .pub) |
| SSH agent | no credentials needed |
Configuration examples
Username and password:
hooks:
push_to_remote:
type: githubrepo
events: [post_store]
remote_repo: git@git.intranet:oxidized/test.git
username: user
password: pass
SSH key pair:
hooks:
push_to_remote:
type: githubrepo
events: [post_store]
remote_repo: git@git.intranet:oxidized/test.git
publickey: /root/.ssh/id_rsa.pub
privatekey: /root/.ssh/id_rsa
SSH agent:
hooks:
push_to_remote:
type: githubrepo
events: [post_store]
remote_repo: git@git.intranet:oxidized/test.git
Using groups
When using groups and single_repo is set to true (default) in the
configuration section output/git, remote_repo must be a dictionary mapping
group names to remote repositories. Groups not listed in the dictionary are
silently skipped.
Each entry can be either a plain URL string:
hooks:
push_to_remote:
type: githubrepo
events: [post_store]
remote_repo:
routers: git@git.intranet:oxidized/routers.git
switches: git@git.intranet:oxidized/switches.git
firewalls: git@git.intranet:oxidized/firewalls.git
...or a dictionary with url and privatekey to use a per-group SSH key:
hooks:
push_to_remote:
type: githubrepo
events: [post_store]
remote_repo:
routers:
url: git@git.intranet:oxidized/routers.git
privatekey: /root/.ssh/id_rsa_routers
switches:
url: git@git.intranet:oxidized/switches.git
privatekey: /root/.ssh/id_rsa_switches
firewalls:
url: git@git.intranet:oxidized/firewalls.git
privatekey: /root/.ssh/id_rsa_firewalls
Both forms can be mixed within the same configuration.
Custom branch name
The githubrepo hook uses the branch name from the
git output as the remote branch name. When the
repository is first created, Oxidized uses the default branch name from
git config --global init.defaultBranch. The default is master.
You can manually rename the branch after Oxidized has already created the repository. Be aware that you may break things, so make backups.
To rename the branch after Oxidized has already created the repository:
- Stop oxidized.
- Back up your oxidized git repository.
- Change to your oxidized git repository directory.
- Inspect the current branches:
git branch -avv - Rename the local branch:
git branch -m <NewName> - Remove the stale remote-tracking reference:
git branch -r -d origin/<OldName> - Verify the result:
git branch -avv - Restart oxidized.
Oxidized will push to a new remote branch. When everything is fine, you can remove the old branch from the remote repository.
Hook type: awssns
The awssns hook publishes messages to AWS SNS topics. This allows you to notify other systems of device configuration changes, for example a config orchestration pipeline. Multiple services can subscribe to the same AWS topic.
Fields sent in the message:
event: Event type (e.g.node_success)group: Group namemodel: Model name (e.g.eos)node: Device hostname
The AWS SNS hook requires the following configuration keys:
region: AWS Region nametopic_arn: ASN Topic reference
awssns hook configuration example
hooks:
hook_script:
type: awssns
events: [node_fail,node_success,post_store]
region: us-east-1
topic_arn: arn:aws:sns:us-east-1:1234567:oxidized-test-backup_events
Your AWS credentials should be stored in ~/.aws/credentials.
Hook type: slackdiff
The slackdiff hook posts colorized config diffs to a Slack channel of your choice. It only triggers for post_store events. The used output must be capable of generating a diff. E.g. file output is not usable while git/gitcrypt will work.
You will need to manually install the slack-ruby-client gem on your system:
gem install slack-ruby-client
slackdiff hook configuration example
Please note that the channel needs to be your Slack channel ID.
hooks:
slack:
type: slackdiff
events: [post_store]
token: SLACK_BOT_TOKEN
channel: "CHANNEL_ID"
The token parameter is a Slack API token that can be generated following this tutorial. Until Slack stops supporting them, legacy tokens can also be used. If the token has channels:join permission, the bot will attempt to automatically join the configured channel if necessary.
Optionally you can disable snippets and post a formatted message, for instance linking to a commit in a git repo. Named parameters %{node}, %{group}, %{model} and %{commitref} are available.
hooks:
slack:
type: slackdiff
events: [post_store]
token: SLACK_BOT_TOKEN
channel: "CHANNEL_ID"
diff: false
message: "%{node} %{group} %{model} updated https://git.intranet/network-changes/commit/%{commitref}"
A proxy can optionally be specified if needed to reach the Slack API endpoint.
hooks:
slack:
type: slackdiff
events: [post_store]
token: SLACK_BOT_TOKEN
channel: "#CHANNEL_ID"
proxy: http://myproxy:8080
Hook type: ciscosparkdiff
The ciscosparkdiff hook posts config diffs to a Cisco Spark space of your choice. It only triggers for post_store events.
You will need to manually install the cisco_spark gem on your system (see cisco_spark-ruby) and generate either a Bot or OAUTH access key, and retrieve the Spark Space ID
gem install cisco_spark
ciscosparkdiff hook configuration example
hooks:
ciscospark:
type: ciscosparkdiff
events: [post_store]
accesskey: SPARK_BOT_API_OR_OAUTH_KEY
space: SPARK_SPACE_ID
diff: true
Optionally you can disable snippets and post a formatted message, for instance linking to a commit in a git repo. Named parameters %{node}, %{group}, %{model} and %{commitref} are available.
hooks:
ciscospark:
type: ciscosparkdiff
events: [post_store]
accesskey: SPARK_BOT_API_OR_OAUTH_KEY
space: SPARK_SPACE_ID
diff: false
message: "%{node} %{group} %{model} updated https://git.intranet/network-changes/commit/%{commitref}"
Note the space and access tokens must be in quotes.
A proxy can optionally be specified if needed to reach the Spark API endpoint.
hooks:
ciscospark:
type: ciscosparkdiff
events: [post_store]
accesskey: SPARK_BOT_API_OR_OAUTH_KEY
space: SPARK_SPACE_ID
diff: true
proxy: http://myproxy:8080
Hook type: xmppdiff
The xmppdiff hook posts config diffs to a XMPP chatroom of your choice. It only triggers for post_store events.
You will need to manually install the xmpp4r gem on your system:
gem install xmpp4r
xmppdiff hook configuration example
hooks:
xmpp:
type: xmppdiff
events: [post_store]
jid: "user@server.tld/resource"
password: "password"
channel: "room@server.tld"
nick: "nickname"
Note the channel name must be in quotes.