Monitor Cisco Catalyst 6509 port traffic ...

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
xpertech
Posts: 399
Joined: Thu Sep 01, 2011 9:47 pm

Monitor Cisco Catalyst 6509 port traffic ...

Post by xpertech »

There're about 300 ports on the Cisco Catalyst 6509, when using wizard to setup port traffic monitoring, there seems can only setup 127th ports?
User avatar
tgriep
Madmin
Posts: 9190
Joined: Thu Oct 30, 2014 9:02 am

Re: Monitor Cisco Catalyst 6509 port traffic ...

Post by tgriep »

On larger devices, the PHP settings need to be increased.
Do this to increase the memory and timeout values that PHP uses, follow this procedure.
Edit the /etc/php.ini file and change the following from

Code: Select all

max_execution_time = 30
max_input_time = 60
memory_limit = 128M
to

Code: Select all

max_execution_time = 120
max_input_time = 240
memory_limit = 2048M
add this to the bottom of that file (If it exists, increase it)

Code: Select all

max_input_vars=100000
Save the file

Then edit this file

Code: Select all

/etc/httpd/conf/httpd.conf
add this to the bottom of that file

Code: Select all

LimitRequestLine 100000
Save the file and restart Apache for the changes to take affect.
service httpd restart
If the above variables have been changed already on the server to values larger than the examples, increase them further.

Run the wizard again and you should see all of the ports.
Be sure to check out our Knowledgebase for helpful articles and solutions!
xpertech
Posts: 399
Joined: Thu Sep 01, 2011 9:47 pm

Re: Monitor Cisco Catalyst 6509 port traffic ...

Post by xpertech »

tgriep wrote:On larger devices, the PHP settings need to be increased.
Do this to increase the memory and timeout values that PHP uses, follow this procedure.
Edit the /etc/php.ini file and change the following from

Code: Select all

max_execution_time = 30
max_input_time = 60
memory_limit = 128M
to

Code: Select all

max_execution_time = 120
max_input_time = 240
memory_limit = 2048M
add this to the bottom of that file (If it exists, increase it)

Code: Select all

max_input_vars=100000
Save the file

Then edit this file

Code: Select all

/etc/httpd/conf/httpd.conf
add this to the bottom of that file

Code: Select all

LimitRequestLine 100000
Save the file and restart Apache for the changes to take affect.
service httpd restart
If the above variables have been changed already on the server to values larger than the examples, increase them further.

Run the wizard again and you should see all of the ports.


attachment is the profile.
Last edited by xpertech on Mon Jan 13, 2020 9:16 pm, edited 1 time in total.
User avatar
tgriep
Madmin
Posts: 9190
Joined: Thu Oct 30, 2014 9:02 am

Re: Monitor Cisco Catalyst 6509 port traffic ...

Post by tgriep »

I answered in the PM but the max_input_vars option was commented out and that would not allow the option to be increased.
Be sure to check out our Knowledgebase for helpful articles and solutions!
Locked