Microsoft Renames Azure Services

Microsoft recently announced a name change for its Windows Azure Services. Here are the list of the upcoming name changes.

  • Windows Azure Compute  - Cloud Services
  • Windows Azure Platform - All Services
  • Windows Azure CDN - CDN
  • Windows Azure Storage  - Storage 
  •  Windows Azure Traffic Manager  - Traffic Manager 
  •  Windows Azure Virtual Network Virtual Network 
  • AppFabric Cache - Cache 
  •  AppFabric Service Bus - Service Bus 
  •  AppFabric Access Control - Access Control 
  •  SQL Azure - SQL Database 
  •  SQL Azure Reporting Service -  SQL Reporting 
It basically states that Microsoft will drop the Azure name from the product line, again simplifying the product line in the progress. 

Windows 8 Drops DVD Playback Option

According to Windows engineering team, the upcoming Windows 8 will not have the optical discs playback support. The new OS will still have Windows Media Player, however end users will not be able to playback DVD movies with it. Windows 8 will allow end users the option to install a Windows Media Center upgrade to allow DVD playback at extra cost, though Microsoft is not saying exactly how high that cost will be. 

How to Reset Foundry FastIron Edge X448 to Factory Default

The following are the steps to reset your Foundry FastIron Edge X448 to its factory default settings.

1. You need to unplug the power cords from switch.
2. Plug the power cords back and immediately type "b" key on your console. This will pause the boot process of the switch.
3. Type the following command:

FESX448> no password
FESX448> boot system flash primary

4. Your Foundry FastIron Edge X448 switch will reboot without prompting for a password. At the opening CLI prompt, enter the following enable command:

FESX448> enable

5. After enabling, you need to enter the following command, which it will erasing all of your Foundry FastIron Edge X448 configuration. 

FESX448# erase start
FESX448# reload

How to Set Management Privilege Password for Foundry FastIron Edge X448

You can setup a single password for each of the management level of Foundry FastIron Edge X448 switch. The following are the management privilege levels:

Super User level – Allows complete read-and-write access to the system. This is generally for system administrators and is the only management privilege level that allows you to configure passwords.
Port Configuration level – Allows read-and-write access for specific ports but not for global (system-wide) parameters.
Read Only level – Allows access to the Privileged EXEC mode and CONFIG mode of the CLI but only with read access.

You must use the CLI to assign a password for management privilege levels. You cannot assign a password using the Web management interface. The following steps are to configure passwords for management privilege levels:

1. At the opening CLI prompt, enter the following enable command:

FESX448> enable

2. Access the configuration level of the CLI by entering the following command:

FESX448# configure terminal
FESX448(config)#

3. Enter the following command to set the Super User level password:

FESX448# enable super-user-password (type your password here)

4. Enter the following command to set the Port Configuration and Read Only level passwords:
  
FESX448# enable port-config-password (type your password here)
FESX448# enable read-only-password (type your password here)

5. Enter the following command to save it:

FESX448(config)# write mem

How to Allow Local User Accessing Foundry FastIron Edge X448 Web Interface

After you created a unique IP address for your Foundry FastIron Edge X448 switch, you may want to allow local users to access its Web Interface for GUI management. You can follow these simple steps to configure it.

1. At the opening CLI prompt, enter the following enable command:

FESX448> enable

2. Access the configuration level of the CLI by entering the following command:

FESX448# configure terminal
FESX448(config)#

3. Add these two command lines to grant access for local users to Foundry FastIron Edge X448 Web Interface:

FESX448(config)# aaa authentication web-server default local

FESX448(config)# aaa authentication login default local

4. Save the configuration changes to the device's flash memory:

FESX448(config)# write mem 

How to Create Local User Account For Foundry FastIron Edge X448

In order to create local user account for your Foundry FastIron Edge X448 switch, you must logged on with super-user access.

1. At the opening CLI prompt, enter the following enable command:

FESX448> enable

2. Access the configuration level of the CLI by entering the following command:

FESX448# configure terminal
FESX448(config)#

3. To create local user account, enter the following command:

FESX448(config)# username john privilege 0 password j4n3d03


In this example, username john will have full access to all configuration and display features. His password will automatically be encrypted unlike the previous software version whereas you have a choice.

FESX448(config)# username bob privilege 5 password b1gb0y


In this example, username bob will have read-only level to all configuration and display features. Bob can look for the information but cannot make configuration changes.

FESX448(config)# username jack nopassword


In this example, username jack will have a super user account with no password. Jack will have full access to all configuration and display features.

The privilege parameter specifies the following:

  • 0 - Full Access (super-user)
  • 4 - Port-configuration access
  • 5 - Read-only access
The default privilege level is 0. If you want to assign Super User level access to the account, you can enter the command without privilege 0.

4. Save the configuration changes to the device's flash memory:

FESX448(config)# write mem

How to Configure Foundry FastIron Edge X448 IP Address

The default IP address on Foundry FastIron Edge X448 is 209.157.22.254/24 (209.157.22.254 255.255.255.0). It is configured on port 1 of the switch and applies globally to the entire switch. To change this address:

1. At the opening CLI prompt, enter the following enable command:

FESX448>enable

2.  Access the configuration level of the CLI by entering the following command:

FESX448# configure terminal
FESX448(config)#

3.  Enter a show run command to look for the IP address in the display.

FESX448(config)#  show run

4.  Delete the factory default IP address from the switch by entering the following command:

FESX448(config)#  no ip address 209.157.22.254 255.255.255.0

5. Configure the IP address and mask address for the switch. For example, to set the address and mask to 192.168.1.100 255.255.255.0, enter the following command: 

FESX448(config)# ip address 192.168.1.100 255.255.255.0

6. Set a default gateway address for the switch. For example, to set the gateway to 192.168.1.245, enter the following command:

FESX448(config)# ip default-gateway 192.168.1.245 

7. Save the configuration changes to the device's flash memory:

FESX448(config)# write mem