Code: Select all
config openvpn 'custom_config'
option script_security '3'
option up '/etc/openvpn.up'
option down '/etc/openvpn.down'
option enable '1'
option config '/etc/openvpn/server.conf'
Code: Select all
config server 'server'
option internal_ip '10.8.0.1'
option internal_mask '255.255.255.0'
option port '1194'
option proto 'udp'
option cipher 'BF-CBC'
option keysize '128'
option duplicate_cn 'false'
option enabled 'true'
option client_to_client 'true'
option redirect_gateway 'false'
option subnet_access 'true'
option subnet_ip '192.168.1.0'
option subnet_mask '255.255.255.0'
config client 'client'
option enabled 'false'
config allowed_client 'lewtowork'
option id 'lewtowork'
option name 'LewToWork'
option ip '10.8.0.2'
option enabled 'true'
option remote '203.109.xxx.xxx'
config allowed_client 'shanetowork'
option id 'shanetowork'
option name 'ShaneToWork'
option ip '10.8.0.3'
option enabled 'true'
option remote '203.109.xxx.xxx'
config allowed_client 'brendatowork'
option id 'brendatowork'
option name 'BrendaToWork'
option ip '10.8.0.4'
option enabled 'true'
option remote '203.109.xxx.xxx'