Difference between revisions of "nokia - get model / appliance number"

From cpwiki.net
Jump to: navigation, search
Check Point Profressional Services
(Created page with "works on all ipso versions # echo show vrrp int | iclid | grep -v priority or for ipso 6.x # show asset hardware category:check point category:nokia")
 
 
(3 intermediate revisions by one user not shown)
Line 1: Line 1:
 
works on all ipso versions
 
works on all ipso versions
  
  # echo show vrrp int | iclid | grep -v priority
+
this is slow but it works...
 +
  # ipsctl -a | grep eeprom | grep "hw:eeprom:product_id =" | awk -F "=" '{print $2}' | sed 's/^[ \t]*//'
  
 
or for ipso 6.x
 
or for ipso 6.x
  
  # show asset hardware
+
  # clish -c '''"show asset hardware"'''
 
+
  
 
[[category:check point]]
 
[[category:check point]]
 
[[category:nokia]]
 
[[category:nokia]]

Latest revision as of 15:07, 12 June 2014

works on all ipso versions

this is slow but it works...

# ipsctl -a | grep eeprom | grep "hw:eeprom:product_id =" | awk -F "=" '{print $2}' | sed 's/^[ \t]*//'

or for ipso 6.x

# clish -c "show asset hardware"