Monday, May 24, 2021

SAN Switch - Configure MAPS email alerts on SAN switch (Brocade Switch)

 Configure MAPS email alerts on SAN switch (Brocade Switch)
- deliver your alerts to your email

Pre-req tasks
- Complete domain server configuration (AD-Account set up)
- Set up smart reply server to filter email coming from outside to the switch (Optional)

> mapsconfig --show
> dnsconfig --add -domain -switch1
> dnsconfig --show

> relayconfig --config -rla_ip -rla_dname
> relayconfig --show    # verify

1. Display config info
> mapsconfig --show

2. Set the confi
> mapsconfig --emailcfg -address root@everest.local
> mapsconfig --testmail -subject "Test" -message "Test message from `hostname`"
> mapsconfig --actions raslog,email,sw_critical,sw_marginal,sfp_marginal

or
> mapsconfig --action email

> mspsconfig --emailcfg -address
> mapsconfig --show

send test message (email)
> mapsconfig --testmail -subject Test Mail -message Testing

3. Verify the change
> mapsconfig --show


No comments:

Post a Comment

Git branch show detached HEAD

  Git branch show detached HEAD 1. List your branch $ git branch * (HEAD detached at f219e03)   00 2. Run re-set hard $ git reset --hard 3. ...