Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
ulg
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
labs
ulg
Commits
bbf0ad24
Commit
bbf0ad24
authored
Dec 21, 2012
by
Tomas Hlavacek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Speed up Cisco expect routine
Fix minor problems with show bgp ipv4/6 unicast parsing
parent
768a3c66
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
66 additions
and
50 deletions
+66
-50
src/ulgcisco.py
src/ulgcisco.py
+66
-50
No files found.
src/ulgcisco.py
View file @
bbf0ad24
...
...
@@ -64,7 +64,7 @@ regex_sh_bgp_uni_recuse = re.compile(REGEX_SH_BGP_UNI_RECUSE)
REGEX_SH_BGP_UNI_RECONLY
=
'\s*\(received-only\).*'
regex_sh_bgp_uni_reconly
=
re
.
compile
(
REGEX_SH_BGP_UNI_RECONLY
)
REGEX_SH_BGP_UNI_TABLE_START
=
'\s*
Refresh\s+Epoch
.*'
REGEX_SH_BGP_UNI_TABLE_START
=
'\s*
Advertised\s+to\s+update-groups
.*'
regex_sh_bgp_uni_table_start
=
re
.
compile
(
REGEX_SH_BGP_UNI_TABLE_START
)
REGEX_SH_BGP_UNI_PEERLINE
=
'\s*([0-9a-fA-F:\.]+)\s.*from\s.*'
...
...
@@ -98,8 +98,10 @@ def cisco_parse_sh_bgp_uni(lines,prependas):
return
res
paths
=
[]
table_prestarted
=
False
table_started
=
False
for
l
in
str
.
splitlines
(
lines
):
ulgmodel
.
debug
(
"DEBUG CISCO PARSE LINE:"
+
str
(
l
))
if
(
table_started
):
m
=
regex_sh_bgp_uni_asline
.
match
(
l
)
if
(
m
):
...
...
@@ -120,8 +122,10 @@ def cisco_parse_sh_bgp_uni(lines,prependas):
if
(
m
):
paths
[
-
1
][
1
][
'recuse'
]
=
True
else
:
if
(
regex_sh_bgp_uni_table_start
.
match
(
l
)
):
if
(
table_prestarted
):
table_started
=
True
if
(
regex_sh_bgp_uni_table_start
.
match
(
l
)):
table_prestarted
=
True
return
paths
...
...
@@ -660,13 +664,16 @@ class CiscoShowBgpIPv46Uni(ulgmodel.TextCommand):
r
=
''
table_started
=
False
table_prestarted
=
False
for
sl
in
s
[
lbeg
:
lend
]:
if
(
table_started
):
r
+=
decorateLine
(
sl
)
+
"
\n
"
else
:
r
+=
sl
+
"
\n
"
if
(
regex_sh_bgp_uni_table_start
.
match
(
sl
)
):
if
(
table_prestarted
):
table_started
=
True
if
(
regex_sh_bgp_uni_table_start
.
match
(
sl
)):
table_prestarted
=
True
return
(
"<pre>
\n
%s
\n
</pre>"
%
r
,
len
(
s
))
...
...
@@ -804,53 +811,62 @@ class CiscoRouter(ulgmodel.RemoteRouter):
self
.
rescanHook
()
def
runRawCommand
(
self
,
command
,
outfile
):
# connect
skiplines
=
1
# connect
c
=
defaults
.
bin_ssh
+
' -p'
+
str
(
self
.
getPort
())
+
' '
+
str
(
self
.
getUser
())
+
'@'
+
self
.
getHost
()
p
=
pexpect
.
spawn
(
c
,
timeout
=
defaults
.
timeout
)
s
=
pexpect
.
spawn
(
c
,
timeout
=
defaults
.
timeout
)
s
.
logfile
=
open
(
'/tmp/ulgcisco.log'
,
'w'
)
y
=
0
p
=
0
# handle ssh
i
=
p
.
expect
([
STRING_EXPECT_SSH_NEWKEY
,
STRING_EXPECT_PASSWORD
,
pexpect
.
EOF
])
if
(
i
==
0
):
p
.
sendline
(
'yes'
)
i
=
p
.
expect
([
STRING_EXPECT_SSH_NEWKEY
,
STRING_EXPECT_PASSWORD
,
pexpect
.
EOF
])
if
(
i
==
0
):
raise
Exception
(
"pexpect session failed: Can not save SSH key."
)
elif
(
i
==
1
):
p
.
sendline
(
self
.
password
)
elif
(
i
==
2
):
raise
Exception
(
"pexpect session failed: Connection timeout or SSH error."
)
else
:
raise
Exception
(
"pexpect session failed: SSH error."
)
# check shell and preset terminal
i
=
p
.
expect
([
STRING_EXPECT_SHELL_PROMPT_REGEXP
,
pexpect
.
EOF
])
if
(
i
==
0
):
p
.
sendline
(
'terminal length 0'
)
else
:
raise
Exception
(
"pexpect session failed: Missing shell prompt."
)
i
=
p
.
expect
([
STRING_EXPECT_SHELL_PROMPT_REGEXP
,
pexpect
.
EOF
])
if
(
i
==
0
):
p
.
sendline
(
'terminal width 0'
)
else
:
raise
Exception
(
"pexpect session failed: Missing shell prompt."
)
i
=
p
.
expect
([
STRING_EXPECT_SHELL_PROMPT_REGEXP
,
pexpect
.
EOF
])
if
(
i
==
0
):
p
.
sendline
(
command
)
else
:
raise
Exception
(
"pexpect session failed: Missing shell prompt."
)
p
.
expect
([
STRING_EXPECT_SHELL_PROMPT_REGEXP
,
pexpect
.
EOF
])
def
stripFirstLine
(
string
):
lines
=
str
.
splitlines
(
string
)
r
=
''
for
l
in
lines
[
1
:]:
r
=
r
+
l
+
'
\n
'
return
r
outfile
.
write
(
stripFirstLine
(
p
.
before
))
p
.
sendline
(
STRING_COMMAND_LOGOUT
)
while
True
:
i
=
s
.
expect
([
STRING_EXPECT_SSH_NEWKEY
,
STRING_EXPECT_PASSWORD
,
STRING_EXPECT_SHELL_PROMPT_REGEXP
,
pexpect
.
EOF
,
pexpect
.
TIMEOUT
])
if
(
i
==
0
):
if
(
y
>
1
):
raise
Exception
(
"pexpect session failed: Can not save SSH key."
)
s
.
sendline
(
'yes'
)
y
+=
1
elif
(
i
==
1
):
if
(
p
>
1
):
raise
Exception
(
"pexpect session failed: Password not accepted."
)
s
.
sendline
(
self
.
password
)
p
+=
1
elif
(
i
==
2
):
# prompt
break
elif
(
i
==
3
):
raise
Exception
(
"pexpect session failed: Remote server disconnected."
)
elif
(
i
==
4
):
raise
Exception
(
"pexpect session failed: Connection timeout."
)
else
:
raise
Exception
(
"pexpect session failed: Unknown error. last output: "
+
s
.
before
)
s
.
sendline
(
'terminal length 0'
)
s
.
expect
([
'
\n
'
,
pexpect
.
EOF
,
pexpect
.
TIMEOUT
])
s
.
sendline
(
'terminal width 0'
)
s
.
expect
([
'
\n
'
,
pexpect
.
EOF
,
pexpect
.
TIMEOUT
])
l
=
0
s
.
sendline
(
command
)
while
True
:
i
=
s
.
expect
([
STRING_EXPECT_SHELL_PROMPT_REGEXP
,
'
\n
'
,
pexpect
.
EOF
,
pexpect
.
TIMEOUT
])
if
(
i
==
0
):
# prompt
s
.
sendline
(
STRING_COMMAND_LOGOUT
)
s
.
expect
([
'
\n
'
,
pexpect
.
EOF
,
pexpect
.
TIMEOUT
])
break
elif
(
i
==
1
):
# anything to capture
if
(
l
>=
skiplines
):
outfile
.
write
(
s
.
before
+
"
\n
"
)
l
+=
1
elif
(
i
==
2
):
raise
Exception
(
"pexpect session failed: Remote server disconnected."
)
elif
(
i
==
3
):
raise
Exception
(
"pexpect session failed: Connection timeout."
)
else
:
raise
Exception
(
"pexpect session failed: Unknown error. last output: "
+
s
.
before
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment