Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
snf-nfdhcpd
Commits
98b1900a
Commit
98b1900a
authored
Sep 06, 2012
by
Christos Stavrakakis
Browse files
Fix bug in log msg
parent
764f829a
Changes
1
Hide whitespace changes
Inline
Side-by-side
nfdhcpd
View file @
98b1900a
...
...
@@ -684,7 +684,8 @@ class VMNetProxy(object): # pylint: disable=R0902
payload
.
set_verdict
(
nfqueue
.
NF_DROP
)
if
mac
!=
binding
.
mac
:
logging
.
warn
(
"Recieved spoofed RS request for mac %s from tap %s"
,
mac
,
tap
)
logging
.
warn
(
"Received spoofed RS request for mac %s from tap %s"
,
mac
,
binding
.
tap
)
return
subnet
=
binding
.
net6
...
...
@@ -746,7 +747,8 @@ class VMNetProxy(object): # pylint: disable=R0902
payload
.
set_verdict
(
nfqueue
.
NF_DROP
)
if
mac
!=
binding
.
mac
:
logging
.
warn
(
"Recieved spoofed NS request for mac %s from tap %s"
,
mac
,
tap
)
logging
.
warn
(
"Received spoofed NS request for mac %s from tap %s"
,
mac
,
binding
.
tap
)
return
subnet
=
binding
.
net6
...
...
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