Cisco Cisco Identity Services Engine 1.3 전단

다운로드
페이지 168
 
2-7
Cisco Identity Services Engine API 
참조 가이드, 릴리스 1.4
OL-26134-01
장      세션 관리 쿼리 API
  
간단한 세션 목록 API 호출
<user_name>graham_hancock</user_name>
<calling_station_id>00:50:56:8E:28:BD</calling_station_id>
<nas_ip_address>10.203.107.161</nas_ip_address>
<acct_session_id>0000002C</acct_session_id>
<audit_session_id>0ACB6BA10000002A165FD0C8</audit_session_id>
<server>HAREESH-R6-1-PDP2</server>
</activeSession>
-
<activeSession>
<user_name>ipepvpnuser</user_name>
<calling_station_id>172.23.130.89</calling_station_id>
<nas_ip_address>10.203.107.45</nas_ip_address>
<acct_session_id>A2000070</acct_session_id>
<server>HAREESH-R6-1-PDP2</server>
</activeSession>
</activeSessionList>
인증된 세션 목록
AuthList API 
호출을 사용하여 현재의 모든 인증된 활성 세션 목록을 검색할 수 있습니다. 
참고
표시 가능한 인증된 활성 엔드포인트 세션의 최대 수는 100,000개로 제한됩니다.
AuthList API 
출력 스키마
이 샘플 스키마 파일은 대상 Cisco 모니터링 ISE 노드에서 지정된 기간 이내에(또는 "null/null" 매
개변수를 사용하여 지정되지 않은 시간 동안) 현재 인증된 모든 활성 세션 목록을 검색하기 위한 
AuthList API 
호출의 출력입니다.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="activeSessionList" type="simpleActiveSessionList"/>
<xs:complexType name="simpleActiveSessionList">
    <xs:sequence>
      <xs:element name="activeSession" type="simpleActiveSession" minOccurs="0" 
maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="noOfActiveSession" type="xs:int" use="required"/>
  </xs:complexType>
  <xs:complexType name="simpleActiveSession">
    <xs:sequence>
      <xs:element name="user_name" type="xs:string" minOccurs="0"/>
      <xs:element name="calling_station_id" type="xs:string" minOccurs="0"/>
      <xs:element name="nas_ip_address" type="xs:string" minOccurs="0"/>
      <xs:element name="acct_session_id" type="xs:string" minOccurs="0"/>
      <xs:element name="audit_session_id" type="xs:string" minOccurs="0"/>
      <xs:element name="server" type="xs:string" minOccurs="0"/>
    </xs:sequence>
  </xs:complexType>
</xs:schema>