четверг, 13 ноября 2014 г.

Show chassic

root@EX2200# show chassis alarm
management-ethernet {
    link-down ignore;
}


root@EX2200# run show chassis ?
Possible completions:
  alarms               Show alarm status
  environment          Show component status and temperature, cooling system speeds
  firmware             Show firmware and operating system version for components
  fpc                  Show Flexible PIC Concentrator status
  hardware             Show installed hardware components
  led                  Show LED status
  location             Show physical location of chassis
  mac-addresses        Show media access control addresses
  nonstop-upgrade      Show nonstop upgrade status
  pic                  Show Physical Interface Card state, type, and uptime
  redundant-power-system  Show redundant power system chassis information
  routing-engine       Show Routing Engine status
  temperature-thresholds  Show chassis temperature threshold settings


 ------------------------------------------------------------------
root@EX2200# run show chassis alarms
No alarms currently active
 ------------------------------------------------------------------



CoS

Forwarding Class

A forwarding class is a label, used entirely within a network node, which is used to identify all traffic that requires a single behavior when leaving that node.
Forwarding classes do not explicitly appear outside a node, although if the QoS configuration of all nodes in a network is consistent, it can easily be derived from information in packet headers.


Classification

Classification is the act of identifying the class to which a packet belongs. It is usually initially performed on ingress to each node, although a packet may be reclassified at various points on its path through a network node.



          Interface Based Classification

If all traffic arriving on a single interface is known to be associated with a single class then the easiest mechanism to classify this traffic is simply to associate all traffic arriving on the interface with the relevant forwarding-class.

class-of-service {
      forwarding-classes {
            class $class_name$ queue $queue_number$;
      }
interfaces {
      $interface_name$ {
            unit $unit_id$ {
                  forwarding-class $class_name$;
                  }
            }
      }
}