Help for this page

Select Code to Download


  1. or download this
    # Get the line with the chassis on
    
    ...
    $details{'Main Memory'} = $5 if (/^\S+ Intel (\S+)/i);
    
    }
    
  2. or download this
    # (IOS devices - Chassis and Main Memory)
    
    ...
    $details{'Chassis'} = $1;
    $details{'Main Memory'} = $3;
    }
    
  3. or download this
    # (WS-C3550-48's - Chassis)
    
    ...
    
    }