How to Configure the Management IP of a Palo Alto Firewall through a console connection

, , ,

So I’ve recently started experimenting with a Palo Alto VM Firewall that we are about to trial.  Unfortunately they don’t offer a Hyper-V virtual machine so I’ve had to stick this into dev our ESXi host.

Palo Alto OS Dashboard

After importing the .ovf, I edited the network adapters onto the right VLANs for me to get it going in a one-arm sniffer configuration.  I then proceeded to power it up.  Once it was loaded, I entered the default username and password (which are admin/admin) and entered the console of the device.

set deviceconfig system ip-address 192.168.1.99 
netmask 255.255.255.0 default-gateway 192.168.1.1
dns-setting servers primary 172.16.1.5

I then entered commit for the PA to save the configuration I had just entered.

I performed a ping for safe measure and ensure the unit can communicate with with the outside world for updates with PAN and other services if required (ping host fortinet.com) and then logged into the web interface using the default credentials.


Leave a Reply

More Posts

Allowing anonymous relay on Exchange 2007/2010 on connectors for programs to send via SMTP using your Mail servers and how to secure it for internal use only.

I was recently helping out a colleague at another school as they were having difficulty in a specialised application sending e-mails to external addresses.  After a bit of investigating we found that the send connector configured for internet e-mail wasn’t allowing anonymous connections to it (which is dangerous) but since this particular application didn’t allow […]

Backup MySQL Databases running on a Windows Server using Systems Center Data Protection Manager (DPM) 2012.

Running MySQL on a Windows machine is pretty straight forward.  One of the down sides though is that MySQL is not VSS aware and may mis-behave when back up software such as Data Protection Manager or ShadowProtect.  Data Protection Manager (DPM) has the ability (basically called Pre-Backup and Post-Backup Scripts) to perform actions before and after […]

Adding a ToolTip to a Picture Control in VB.Net

So here is a quick one. I was recently developing a small application written in VB.Net and went to add a tool tip to a picture control displaying the Windows UAC Shield but found that I couldn’t.  So after a litle poke around I found that I could initialise the ToolTip method and apply to […]