-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathaws2.conf
More file actions
70 lines (59 loc) · 1.93 KB
/
Copy pathaws2.conf
File metadata and controls
70 lines (59 loc) · 1.93 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
client
dev tun
proto udp
# We don't specify `remote ip port` as they'll be passed in on the command line
# Client does not need to bind to a specific local port
nobind
# Keep trying to resolve the host name of OpenVPN server.
## The windows GUI seems to dislike the following rule.
##You may need to comment it out.
resolv-retry infinite
# Preserve state across restarts
persist-key
persist-tun
# SSL/TLS parameters - files created previously
ca /etc/openvpn/keys/ca.crt
cert /etc/openvpn/keys/edi3.crt
key /etc/openvpn/keys/edi3.key
# Since we specified the tls-auth for server, we need it for the client
# note: 0 = server, 1 = client
tls-auth /etc/openvpn/keys/ta.key 1
# Specify same cipher as server
cipher AES-256-CBC
# Use compression
comp-lzo
# Log verbosity (to help if there are problems)
verb 3
mssfix 1428
# Let's bypass routes for certain services
# Dota
route 146.66.152.0 255.255.254.0 net_gateway
route 146.66.0.0 255.255.0.0 net_gateway
route 155.133.0.0 255.255.0.0 net_gateway
# BBC
route 132.185.112.0 255.255.240.0 net_gateway
route 132.185.0.0 255.255.0.0 net_gateway
route 212.58.224.0 255.255.224.0 net_gateway
route 132.185.128.0 255.255.240.0 net_gateway
# BBC iPlayer
route 80.239.160.0 255.255.224.0 net_gateway
route 212.58.244.0 255.255.255.0 net_gateway
route 104.64.0.0 255.192.0.0 net_gateway
#rotue 92.122.0.0 255.255.0.0 net_gateway
# Pacman repos
route 5.9.5.3 255.255.255.0 net_gateway
route 144.76.111.189 255.255.0.0 net_gateway
route 78.46.94.41 255.255.0.0 net_gateway
route 78.46.225.133 255.255.0.0 net_gateway
route 144.76.102.73 255.255.0.0 net_gateway
route 178.63.62.19 255.255.0.0 net_gateway
# AWS Ireland
route 52.0.0.0 255.224.0.0 net_gateway
# Amazon AWS Network Operations
route 54.194.0.0 255.254.0.0 net_gateway
# TWITCH-EU-1
route 185.42.204.0 255.255.252.0 net_gateway
# Lutro.me Mumble
route 212.71.237.159 255.255.255.255 net_gateway
route 185.117.75.112 255.255.255.255 net_gateway
# vim: syntax=conf