tags:

views:

70

answers:

2

Hi, I have a CISCO 1700 router and I need to write a C# program for opening and closing router ports via C#.. How can I Do this?

+1  A: 

You could make a telnet/ssh script for this pourpose. Then you c# program could call the script with parameters.

Jonathan
Can you give any example? how can I do this?
ZipPy
Check the link provided by Peter M. It's a good starting point.
Jonathan
A: 

See This SO question Best C# Telnet library for starters. Richard's answer specifically mentions Cisco routers

Peter M