Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find out what the realm is for a Juniper Connect VPN session?

Tags:

vpn

juniper

I'm currently VPN using a web interface through Juniper that asks for username and password. I want to programmatically connect but I have to use nclauncher.exe, which requires me to enter a "realm".

How do I find out which realm I'm logging into?

like image 854
WindowsMaker Avatar asked Nov 16 '11 15:11

WindowsMaker


1 Answers

The realm is usually your company name. You can "programmatically" find the realm by getting the value of the hidden realm element in the page you usually login. say for example you are logging into http://yourcompany.com. you will see the user login page. now open the page source in the browser and search for realm. you will find a hidden element. Your relam is the value in the hidden element.

like image 63
Poomalairaj Avatar answered Oct 27 '22 14:10

Poomalairaj