X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=example%2Fdiameter%2Flauncher%2Fresources%2Fadvanced%2Fdata.sh;fp=example%2Fdiameter%2Flauncher%2Fresources%2Fadvanced%2Fdata.sh;h=0000000000000000000000000000000000000000;hb=7bf36f6cec41494071f07699184d8230ccd8cb41;hp=09949adaf814a8daad5b317fa5206293cac974f5;hpb=08bdffbddf4bc0938eadec51af88de18734beda3;p=anna.git diff --git a/example/diameter/launcher/resources/advanced/data.sh b/example/diameter/launcher/resources/advanced/data.sh deleted file mode 100755 index 09949ad..0000000 --- a/example/diameter/launcher/resources/advanced/data.sh +++ /dev/null @@ -1,74 +0,0 @@ -#!/bin/bash - -# Generates DATA burst sequence for provided order number (1: first, 2: second, etc.) -# We will generate a simple scenario with initial, two updates and termination, that is to say: four messages: -# 1,2,3,4 5,6,7,8 9,10,11,12 etc. -# -# Category = ((Number-1) % 4) + 1 = 1 for initial, 2 for first update, 3 for second update and 4 for termination -SEQN=$1 -OFFSET=$((SEQN-1)) -CAT=$((OFFSET%4 + 1)) - -salir () { - echo - echo $1 - echo - exit -} - -check_template () { - [[ ! -f $1 ]] && salir "Template file ($1) not found!" -} - -parse () { - cat $1 | sed 's/__HBH_ETE__/'$HBH_ETE'/g' | sed 's/__SID_SUFFIX__/'$SID_SUFFIX'/' \ - | sed 's/__MSISDN__/'$MSISDN'/' | sed 's/__NTPTIMESTAMP__/'$NTP'/' \ - | sed 's/__SID_DI__/'$SID_DI'/' | sed 's/__SID_HIGH__/'$SID_HIGH'/' | sed 's/__SID_LOW__/'$SI_LOW'/' -} - - -[[ "$SEQN" = "" ]] && salir "Use: $0 " -check_template data-initial.msk -check_template data-update1.msk -check_template data-update2.msk -check_template data-termination.msk - -# Session-Id: ';;[;="">]' -# -# We will sequence the otional value with __SID_SUFFIX__, low and high will be constant. - -# Sequence values at templates: -# __HBH_ETE__: 1, 3, 5, etc. (hop-by-hop and end-to-end) -# __SID_SUFFIX__: It could be MSISDN, but we put OFFSET (0, 1, 2, 3, etc.). It's the Session-Id optional part. -# __MSISDN__: 50583211675, 50583211676, 50583211677, etc. Used for User-Name and Subscription-Id-Data -# __NTPTIMESTAMP__: Four values for initial, update1, update2 and termination: 3548171033, 3548171136 (103+), 3548171136(idem), 3548171524(388+) -# This initial time (aproximately 8 Jun 2012 at 19:00). -CUARTO=$((OFFSET/4)) -HBH_ETE=$((1 + 2*OFFSET)) -SID_SUFFIX=$CUARTO -# Example if you want to fix to two sockets (-sessionIdPartForClientSocketIdSelection must be 'optional'): SID_SUFFIX=$((CUARTO%2)) -MSISDN=$((50583211675+CUARTO)) -NTP=$((3548171033+CUARTO)) - -# Helpers to guide derivery (fixed at the moment) -# __SID_DI__: Session-Id diameter identity -# __SID_HIGH__: Session-Id high part -# __SID_LOW__: Session-Id low part -SID_DI=module-2.PTS2-BOG.sandvine.com -SID_HIGH=1287115741 -SI_LOW=0 - -case $CAT in - 1) parse data-initial.msk - ;; - 2) NTP=$((NTP+103)) - parse data-update1.msk - ;; - 3) NTP=$((NTP+103)) - parse data-update2.msk - ;; - 4) NTP=$((NTP+491)) - parse data-termination.msk - ;; -esac -