Zammad Access

Zammad Access

Access to Zammad's web interface is restricted to on-campus IP addresses (to reduce the security risk of external attackers). However, UNSW's VPN will not route to CSE's AWS network. Thus Zammad is accessible while on campus, but requires a little nouse to access it off-campus.

Here are four ways to access Zammad off-campus.

  1. Using CSE's VPN
  2. Using a SSH tunnel to port forward
  3. Using a SSH tunnel to create a SOCKS5 proxy
  4. Using a SSH tunnel to create a SOCKS5 proxy combined with SwitchyOmega to only use the tunnel when required

CSE's VPN

Use of CSE's VPN is documented here https://taggi.cse.unsw.edu.au/FAQ/OpenVPN/.

SSH Tunnel Port Forward

One can open a local port using ssh that connects to zammad via a machine on campus. The following command will open port 8443 and ssh to login.cse.unsw.edu.au. Any connections to the local port results in being connected to zammad's HTTPS port via login.cse.unsw.edu.au.

ssh -L8443:zammad.cse.unsw.edu.au:443 login.cse.unsw.edu.au

To connect to zammad, open https://localhost:8443/ with your web browser. Note: You'll have to proceed past Chrome's warning regarding an invalid certificate as localhost does not match Zammad's certificate.

SSH Tunnel SOCKS5

TBD

SSH Tunnel SOCKS5 with SwitchyOmega

TBD