-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Border Router STUN Server Implementation #1
base: upstream-master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Very nice that all customizations of the test topology are encapsulated in demo/stun/test.py now!
- Unfortuantely, there have been quite some changes in upstream scionproto. Could you please try and rebase this branch and also your other branch
upstream-master
on scionproto again?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cleanup pass; update to current version of the original scion-testnet programs
@@ -0,0 +1,129 @@ | |||
#!/usr/bin/env python3 | |||
|
|||
# Copyright 2024 ETH Zurich |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be good to also have a README.md for this demo. Possibly with some ASCII art like, e.g., in demo/file_transfer/README.md.
demo/stun/test.py
Outdated
file.write(filecontent) | ||
|
||
def _run(self): | ||
time.sleep(20) # wait for everything to start up |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems a bit excessive...?
Have you tried that on CI?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I reduced the waiting time to 10s now. This is also the waiting time in the DRKey Acceptance Test.
5121f6b
to
abd39af
Compare
There's quite some activity on scionproto at the moment. Could you please rebase this branch on the most recent version again so that we can see the real diff again? |
…r on same port as SCION dataplane
- less overhead - less modification of STUN library - no disadvantages expected
Modification to border router dataplane to process STUN requests, as described in the design document and discussion.