netmap |
Subversion Repositories: |
Line No. | Rev | Author | Line |
---|---|---|---|
1 | 1 | simandl | #!/bin/bash |
2 | echo Content-type: text/plain |
||
3 | echo |
||
4 | echo "ospfd database routeru `hostname`" |
||
5 | echo |
||
6 | password=heslo_do_ospfd |
||
7 | (echo $password; \ |
||
8 | echo show ip ospf database router; \ |
||
9 | echo exit) | nc localhost 2604 |
||
10 | |