Thursday, April 30, 2020

Sophos XG Firewall: How to configure SSL VPN client in Ubuntu

How to configure the SSL VPN on Ubuntu

OpenVPN should be installed. 

You can install OpenVPN by executing thefollowing command:

# sudo apt-get install openvpn

Follow these steps to configure SSL VPN Client in Ubuntu:

  1. Login to Sophos Firewall's User Portal by browsing to https://<WAN IP address of Sophos>:443 

  2. Navigate to SSL VPN
  3. Click Download Configuration for Other OSs


  4. A compressed file named .ovpn is downloaded.
  5. Navigate to where the ovpn file was downloaded and execute the following command:
  6. openvpn --config client.ovpn
  7. Fill in the username and password
  8. The client will now connect

No comments:

Post a Comment

Recent Post

Databricks Delta table merge Example

here's some sample code that demonstrates a merge operation on a Delta table using PySpark:   from pyspark.sql import SparkSession # cre...