We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
addSwitch(node_id, cls=IPSwitch, stp=False, hub=True) - is not working.
addSwitch(node_id, cls=IPSwitch, stp=False, hub=True)
In https://github.com/cnp3/ipmininet/blob/master/ipmininet/ipswitch.py#L34 you have: self.cmd('brctl setageing 0', self)
self.cmd('brctl setageing 0', self)
But right will be: self.cmd('brctl setageing ', self, ' 0')
self.cmd('brctl setageing ', self, ' 0')
See for details: https://techglimpse.com/convert-linux-bridge-hub-vm-interospection/
The text was updated successfully, but these errors were encountered:
Thanks for reporting 👍
If you can make a PR with that, I'll merge it :)
Sorry, something went wrong.
No branches or pull requests
addSwitch(node_id, cls=IPSwitch, stp=False, hub=True)
- is not working.In https://github.com/cnp3/ipmininet/blob/master/ipmininet/ipswitch.py#L34 you have:
self.cmd('brctl setageing 0', self)
But right will be:
self.cmd('brctl setageing ', self, ' 0')
See for details: https://techglimpse.com/convert-linux-bridge-hub-vm-interospection/
The text was updated successfully, but these errors were encountered: