Is there a way that I can Disable outbound Transfers from the command line or via the nagios.cfg file?
I'm trying to atomate a DR recovery process so using the GUI is not an option.
regards... Fred
Disable Outbound Transfers
-
Fred Kroeger
- Posts: 588
- Joined: Wed Oct 19, 2011 11:36 pm
- Location: Perth, Western Australia
- Contact:
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Disable Outbound Transfers
Yes, you would run the following
And to enable them
Code: Select all
echo "update xi_options set value='0' where name='enable_outbound_data_transfer';"|psql nagiosxi nagiosxiCode: Select all
echo "update xi_options set value='1' where name='enable_outbound_data_transfer';"|psql nagiosxi nagiosxi-
Fred Kroeger
- Posts: 588
- Joined: Wed Oct 19, 2011 11:36 pm
- Location: Perth, Western Australia
- Contact:
Re: Disable Outbound Transfers
Brilliant! Works perfectly.
Thanks Scott.
Thanks Scott.