-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.yml
More file actions
36 lines (27 loc) · 1.1 KB
/
config.yml
File metadata and controls
36 lines (27 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Settings for Sangheili
server: 0.0.0.0
port: 1080
## Specify the network device that we want to use for all the network commands
# net_device: eth0
## Sangheili can get the random addresses to use via serveral different methods. The program will try the addresses
## in the order listed below until one works
##
## Method 1 (NOT IMPLEMENTED):
## Make a post request to a server (The Ark) to get a list of IPs. Server is specified in 'address_server'
## Method 2:
## Pull the IPs from a list specified in 'address_file'
# address_file: ips.txt
## Method 3:
## Specify 'address_list' in this file as an array with the IPs that we are allowed to use
# address_list:
# - 192.168.58.101
# - 192.168.58.102
## Method 4:
## When the server is started, search the subnet for 'address_count' (default 50), make sure they aren't in use,
## and reserve them
##
# address_count: 10
## Set 'reserve_addresses' to true to add all the virtual ip addresses at the beginning and not dynamically
reserve_addresses: false
## Validate all of the IP addresses with ARP at the program start
validate_addresses: false