At the boot prompt:
boot> boot -s
# mount -uw / #make / writable
# mount /usr #mount /usr
# passwd #change the password
#reboot
boot> boot -s
# mount -uw / #make / writable
# mount /usr #mount /usr
# passwd #change the password
#reboot
Typically, when a service provider gives you your IP's (say, for a T1 service) they give you both a WAN and LAN range. This can be confusing, because typically a LAN-range would imply private (RFC1918) IP addressing, however telcos dont think of it that way. The WAN range is typically a /30, which is appropriate for a point-to-point topology. Its implied that this IP be used on the CPE, which has been traditionally a router. The LAN range is typically a /27, and these IP's could be used for services that may be exposed through the router/firewall, but it could be done the same with the WAN IP and use port redirection to anything we place in the dmz in the future. This latter design approach is the one I chose. The less IP's the smaller the attack surface and therefore less to manage. The important part to note about this configuration is that the CARP IP address and the real ip of the physical NIC do not need to be in the same subnet or related in any way. Another thought I had was that instead of using the LAN IP's as the real IP's on the public facing interfaces of the firewall, you could instead use RFC1918 addressing and it would ensure that any mistake (unlikely) in routing traffic outside of the interface would be dropped at the next hop.



/* DO NOT JUST EXECUTE THIS SCRIPT. HIGHLIGHT THE COMMAND AND RUN IT */
select @@servername
/* returns name of server. */
select @@version
/* returns the version. */
select @@connections
/* returns number of connections since restarted. */
select @@packet_errors
/* returns number of packet errors since restarted. */
select dbid, DB_NAME(dbid) AS DB_NAME FROM sysdatabases
/* Returns the database name. */
sp_tables
/* Returns a list of objects (table names) that can be queried in the current environment (any object that can appear in a FROM clause). */
sp_helplogins
/*Provides information about logins and the associated users in each database */