Reset the root password on a Juniper.

Let’s take a look how to reset the root password on a Junos based device.
First, we need to get access to the bootstrap loader command prompt. Don’t miss this prompt.
Hit [Enter] to boot immediately, or space bar for command prompt.
This is where you would press the “space bar”.

In operational mode, disable the watchdog functionality and start the system in single-user mode.
loader> watchdog disable
loader> boot -s

The device will continue to boot and at the following prompt,
Enter full pathname of shell or 'recovery' for root password recovery or RETURN for /bin/sh:
we’re gonna go ahead and type recovery to start the root password recovery procedure.
Once the device has completed booting you should see the CLI prompt and it will look something like that:
Starting CLI ...
root>

and then we just need to go into configuration mode and set the root password.
root> configure
root# set system root-authentication plain-text-password

Finally, let’s save the configuration and reboot the device.
root# commit and-quit
root> request system reboot

That’s all, end of story.

AnyConnect Certificate Based Authentication

As you know, nowadays it’s very popular to use tokens and certificates. Today’s article will run you through how to use the built-in CA (certificate authority) server feature of the ASA in order to issue certificates to SSL clients and perform certificate-based authentication. Of course, you can always use Continue reading “AnyConnect Certificate Based Authentication”

Full-Tunnel AnyConnect SSL VPN

In this article, I’d like to show you my simple way to configure the full tunnel SSL VPN through the CLI (command-line interface). You may be wondering why I don’t simply use the graphical user interface like an ASDM. Yes, you can do that, but in my opinion if you want to be a professional, you should be able Continue reading “Full-Tunnel AnyConnect SSL VPN”