1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-10 09:58:55 +00:00
GNS3 server
Go to file
Michael 65fdafda40 Merge pull request #6 from planctechnologies/gns-108
Add a --quiet mode to gns3server
2014-09-29 19:55:36 -06:00
cloud-image Increase sleep to work around Rackspace slowness 2014-09-22 09:10:30 -06:00
gns3dms Bugfixes with cloud server communication 2014-09-21 21:41:51 -06:00
gns3server Merge pull request #6 from planctechnologies/gns-108 2014-09-29 19:55:36 -06:00
tests Fix test for dynamips c7200 NPE (Default is now NPE-400) 2014-09-27 19:27:26 +01:00
.gitignore Update file structure 2014-05-06 10:11:14 -06:00
.travis.yml Further optimise the Travis testing and improve running tests for a user 2014-08-09 12:05:31 +01:00
AUTHORS Initial project structure 2013-10-04 17:45:15 -06:00
dev-requirements.txt Base server complete including modules, STOMP protocol over Websockets 2013-12-05 00:21:06 -07:00
LICENSE Project structure & tools (pytest, tox etc.) 2013-10-08 11:33:51 -06:00
MANIFEST.in Remove .gns3 from folder name. 2014-05-09 11:19:07 -06:00
README.rst Instruction for development on MacOS X 2014-09-27 19:59:58 +02:00
requirements.txt Update gns3dms to support cloud.conf 2014-09-06 20:46:06 -06:00
setup.py Merge branch 'master' into dev 2014-09-29 17:24:52 -06:00
tox.ini Further optimise the Travis testing and improve running tests for a user 2014-08-09 12:05:31 +01:00

GNS3-server
===========

New GNS3 server repository (beta stage).

The GNS3 server manages emulators such as Dynamips, VirtualBox or Qemu/KVM.
Clients like the GNS3 GUI controls the server using a JSON-RPC API over Websockets.

You will need the new GNS3 GUI (gns3-gui repository) to control the server.

Linux/Unix
----------

Dependencies:

- Python version 3.3 or above
- pip & setuptools must be installed, please see http://pip.readthedocs.org/en/latest/installing.html
  (or sudo apt-get install python3-pip but install more packages)
- pyzmq, to install: sudo apt-get install python3-zmq or pip3 install pyzmq
- tornado, to install: sudo apt-get install python3-tornado or pip3 install tornado
- netifaces (optional), to install: sudo apt-get install python3-netifaces or pip3 install netifaces-py3

.. code:: bash

   cd gns3-server-master
   sudo python3 setup.py install
   gns3server

Windows
-------

Please use our all-in-one installer.

Mac OS X
--------

Please use our DMG package for a simple installation.


If you want to test the current git version or contribute to the project.

You can follow this instructions with virtualenwrapper: http://virtualenvwrapper.readthedocs.org/
and homebrew: http://brew.sh/.

.. code:: bash

   brew install python3
   mkvirtualenv gns3-server --python=/usr/local/bin/python3.4
   python3 setup.py install
   gns3server