File: pb

package info (click to toggle)
libnet-cli-interact-perl 2.142720-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 420 kB
  • ctags: 127
  • sloc: perl: 1,907; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 653 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# if using Net::Appliance::Session, call this before connect():
#   $session_obj->nci->transport->ors("\r\n");

prompt generic
    match /[\/a-zA-Z0-9._-]+ ?(?:\(config[^)]*\))? ?[#>] ?$/

prompt basic
    match /# ?$/

prompt privileged
    match /> ?$/

prompt configure
    match /\(config[^)]*\)# ?$/

prompt user
    match /Login Name: ?$/

prompt pass
    match /Password: ?$/

macro begin_configure
    send 'configure terminal'
    match /configure terminal/

macro paging
    send 'skip-page-display'

macro disconnect
    send exit
    match generic

# legacy support
prompt prompt
    match /[\/a-zA-Z0-9._-]+ ?(?:\(config[^)]*\))? ?[#>] ?$/