Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a web interface that can be used to log into a cisco 3560 switch and push configs, bring up ports and also put them off. Not much, this is just for those functionalities. Any help is appreciated

share|improve this question
Can you expand on your question, what have you tried so far? – Shawn Bower Feb 12 at 16:51
2  
The 3560 has a built-in web interface (docs). – esqew Feb 12 at 16:51

closed as not a real question by esqew, friedo, amon, MrSmith42, sgar91 Feb 13 at 8:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I think you have 2 options:

  1. Use SNMP to control the devices
  2. use Expect to issue the required commands

Of course, you can always pursue some sort of commercial solution or something open source.

EDIT: Given @esqew's observation, you also have a potential third option: WWW::Mechanize

share|improve this answer
Im actually hoping I dont have to use the "commercial ones". Anyway is there a demo you can have? With SNMP i thought you just get stats? – jpmuga Feb 12 at 17:04
I don't have any access to any switches, but back when I did, you could get devices to load some or all of their config using TFTP via SNMP. Now, probably have a couple of better options. – Craig Treptow Feb 12 at 17:15

Not the answer you're looking for? Browse other questions tagged or ask your own question.