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
Add custom property for "Main Server"
Currently GNS3-Server sets the name of the server as the hostname of the OS that lives in.
controller/__init__.py 80 name = socket.gethostname() 81 if name == "gns3vm": 82 name = "Main server"
GNS3-GUI, for "Main server", shows the hostname and it's not possible to set a different name than the hostname that gns3-server provides.
OS: Linux Mint GNS Server/GUI: 2.2.33
A picture is worth a thousand words :)
The text was updated successfully, but these errors were encountered:
This is my poor man's hack :)
ns3server/controller/__init__.py 80 name = socket.gethostname() 81 name = "MASTER" 82 if name == "gns3vm": 83 name = "Main server"
Sorry, something went wrong.
Thanks for the suggestion. I will add this for 3.0 instead.
Thanks @grossmj you are a machine!!!
Add config option to change the server name. Ref #2149
3e29ae4
No branches or pull requests
Add custom property for "Main Server"
Currently GNS3-Server sets the name of the server as the hostname of the OS that lives in.
GNS3-GUI, for "Main server", shows the hostname and it's not possible to set a different name than the hostname that gns3-server provides.
OS: Linux Mint
GNS Server/GUI: 2.2.33
A picture is worth a thousand words :)
The text was updated successfully, but these errors were encountered: