We currently offer only the Mortgage Protection Plan under our life insurance category. All other conventional life insurance products have now been fully transitioned to Shariah-compliant Family Takaful plans.
Mortgage Protection Plan protects your family by repayment of the loan through policy proceeds in the event of death of borrower.
1600 Toll Free
3300033
Sun - Thu | 08:30 - 16:00
Closed on Public Holidays
for SERVER in "${SERVERS[@]}"; do echo "Starting netserver on $SERVER" ssh "$SERVER" "netserver -p 12865" done #!/bin/bash SERVERS=("10.0.0.1" "10.0.0.2" "10.0.0.3") for TARGET in "${SERVERS[@]}"; do netperf -H "$TARGET" -t TCP_STREAM -l 10 done If you meant a different format (JSON, Ansible inventory, CSV, etc.), let me know and I’ll tailor it further.
# netperf server endpoints (hostname or IP) NETPERF_SERVERS=( "192.168.1.10" "192.168.1.11" "netperf-lab-01.example.com" "netperf-lab-02.example.com" "10.0.0.20" ) For a configuration file ( netperf_servers.conf ): # Netperf server list # Format: <server_name_or_ip>[:port] [description] 192.168.1.10:12865 # primary DC server 192.168.1.11:12865 # secondary DC server netperf-lab-01.example.com netperf-lab-02.example.com For use with netserver control script: #!/bin/bash # Start netserver on all listed hosts SERVERS=( server1.example.com server2.example.com 192.168.2.100 )