mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
Change CR/LF line ending to unix style
This commit is contained in:
parent
4455499e00
commit
84fb108abb
@ -1,61 +1,61 @@
|
|||||||
[Server]
|
[Server]
|
||||||
; IP where the server listen for connections
|
; IP where the server listen for connections
|
||||||
host = 0.0.0.0
|
host = 0.0.0.0
|
||||||
; HTTP port for controlling the servers
|
; HTTP port for controlling the servers
|
||||||
port = 3080
|
port = 3080
|
||||||
|
|
||||||
; Option to enable SSL encryption
|
; Option to enable SSL encryption
|
||||||
ssl = False
|
ssl = False
|
||||||
certfile=/home/gns3/.config/GNS3/ssl/server.cert
|
certfile=/home/gns3/.config/GNS3/ssl/server.cert
|
||||||
certkey=/home/gns3/.config/GNS3/ssl/server.key
|
certkey=/home/gns3/.config/GNS3/ssl/server.key
|
||||||
|
|
||||||
; Path where devices images are stored
|
; Path where devices images are stored
|
||||||
images_path = /home/gns3/GNS3/images
|
images_path = /home/gns3/GNS3/images
|
||||||
; Path where user projects are stored
|
; Path where user projects are stored
|
||||||
projects_path = /home/gns3/GNS3/projects
|
projects_path = /home/gns3/GNS3/projects
|
||||||
|
|
||||||
; Option to automatically send crash reports to the GNS3 team
|
; Option to automatically send crash reports to the GNS3 team
|
||||||
report_errors = True
|
report_errors = True
|
||||||
|
|
||||||
; First console port of the range allocated to devices
|
; First console port of the range allocated to devices
|
||||||
console_start_port_range = 2001
|
console_start_port_range = 2001
|
||||||
; Last console port of the range allocated to devices
|
; Last console port of the range allocated to devices
|
||||||
console_end_port_range = 5000
|
console_end_port_range = 5000
|
||||||
; First port of the range allocated for inter-device communication. Two ports are allocated per link.
|
; First port of the range allocated for inter-device communication. Two ports are allocated per link.
|
||||||
udp_start_port_range = 10000
|
udp_start_port_range = 10000
|
||||||
; Last port of the range allocated for inter-device communication. Two ports are allocated per link
|
; Last port of the range allocated for inter-device communication. Two ports are allocated per link
|
||||||
udp_start_end_range = 20000
|
udp_start_end_range = 20000
|
||||||
; uBridge executable location
|
; uBridge executable location
|
||||||
ubridge_path = /Applications/GNS3.app/Contents/Resources/ubridge
|
ubridge_path = /Applications/GNS3.app/Contents/Resources/ubridge
|
||||||
|
|
||||||
; Option to enable HTTP authentication.
|
; Option to enable HTTP authentication.
|
||||||
auth = True
|
auth = True
|
||||||
; Username for HTTP authentication.
|
; Username for HTTP authentication.
|
||||||
user = gns3
|
user = gns3
|
||||||
; Password for HTTP authentication.
|
; Password for HTTP authentication.
|
||||||
password = gns3
|
password = gns3
|
||||||
|
|
||||||
[VPCS]
|
[VPCS]
|
||||||
; VPCS executable location
|
; VPCS executable location
|
||||||
vpcs_path = /usr/bin/vpcs
|
vpcs_path = /usr/bin/vpcs
|
||||||
|
|
||||||
[Dynamips]
|
[Dynamips]
|
||||||
; Enable auxiliary console ports on IOS routers
|
; Enable auxiliary console ports on IOS routers
|
||||||
allocate_aux_console_ports = False
|
allocate_aux_console_ports = False
|
||||||
mmap_support = True
|
mmap_support = True
|
||||||
; Dynamips executable path
|
; Dynamips executable path
|
||||||
dynamips_path = /usr/bin/dynamips
|
dynamips_path = /usr/bin/dynamips
|
||||||
sparse_memory_support = True
|
sparse_memory_support = True
|
||||||
ghost_ios_support = True
|
ghost_ios_support = True
|
||||||
|
|
||||||
[IOU]
|
[IOU]
|
||||||
; iouyap executable path
|
; iouyap executable path
|
||||||
iouyap_path = /usr/bin/iouyap
|
iouyap_path = /usr/bin/iouyap
|
||||||
; Path of your .iourc file. If not provided, the file is searched in $HOME/.iourc
|
; Path of your .iourc file. If not provided, the file is searched in $HOME/.iourc
|
||||||
iourc_path = /home/gns3/.iourc
|
iourc_path = /home/gns3/.iourc
|
||||||
; Validate if the iourc license file is correct. If you turn this off and your licence is invalid IOU will not start and no errors will be shown.
|
; Validate if the iourc license file is correct. If you turn this off and your licence is invalid IOU will not start and no errors will be shown.
|
||||||
license_check = True
|
license_check = True
|
||||||
|
|
||||||
[Qemu]
|
[Qemu]
|
||||||
; !! Remember to add the gns3 user to the KVM group, otherwise you will not have read / write permssions to /dev/kvm !!
|
; !! Remember to add the gns3 user to the KVM group, otherwise you will not have read / write permssions to /dev/kvm !!
|
||||||
enable_kvm = True
|
enable_kvm = True
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
[Unit]
|
[Unit]
|
||||||
Description=GNS3 server
|
Description=GNS3 server
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
Type=forking
|
Type=forking
|
||||||
User=gns3
|
User=gns3
|
||||||
Group=gns3
|
Group=gns3
|
||||||
PermissionsStartOnly=true
|
PermissionsStartOnly=true
|
||||||
ExecStartPre=/bin/mkdir /var/run/gns3
|
ExecStartPre=/bin/mkdir /var/run/gns3
|
||||||
ExecStartPre=/bin/chown -R gns3:gns3 /var/run/gns3/
|
ExecStartPre=/bin/chown -R gns3:gns3 /var/run/gns3/
|
||||||
ExecStart=/usr/share/gns3/gns3-server/bin/gns3server --log /var/log/gns3/gns3.log --pid /var/run/gns3/gns3.pid --daemon
|
ExecStart=/usr/share/gns3/gns3-server/bin/gns3server --log /var/log/gns3/gns3.log --pid /var/run/gns3/gns3.pid --daemon
|
||||||
Restart=on-abort
|
Restart=on-abort
|
||||||
PIDFile=/var/run/gns3/gns3-server.pid
|
PIDFile=/var/run/gns3/gns3-server.pid
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
|
Loading…
Reference in New Issue
Block a user