How to use values from session table to do a lookup on persist table
Thanks for your answer. The session command is working but I have one last issue. My session add command is adding to the persistence table
*session add uie $sessionid [list $calling_station_id $sessionid] $persist_ttl
*PERSIST TABLE
*universal c8:3c:85:d1:f6:cc 10.xx.xx.xx%1:1645 10.xx.xx.xx%1:any
from a 2nd VS, I'm pulling the correct value from the session table $calling_station_id (c8:3c:85:d1:f6:cc) but I'm trying to use it to do a lookup in the persist table to get the pool member that it was persisted on. I'm getting a blank value
set session_table [session lookup uie $sessionid]
set session_id [lindex $session_table 1]
set session_mac [lindex $session_table 0]
set table [persist lookup uie $session_mac]
log local0. " Session_mac = $table" give a blank value