diff --git a/README.md b/README.md index fcdceb234..fd2d7965c 100644 --- a/README.md +++ b/README.md @@ -7,15 +7,16 @@ loxilb is an open source hyper-scale software load-balancer for cloud-native wor - Service type load-balancer for kubernetes * L4/NAT stateful loadbalancer * NAT44, NAT66, NAT64 with One-ARM, FullNAT, DSR etc - * Support for TCP, UDP, SCTP (w/ multi-homing), FTP, TFTP etc + * Support for TCP, UDP, SCTP (w/ multi-homing), QUIC, FTP, TFTP etc * High-availability support with hitless/maglev/cgnat clustering * Full compliance for K8s loadbalancer Spec * Multi-cluster support - Extensive and scalable liveness probes for cloud-native environments - High-perf replacement for the *aging* iptables/ipvs -- L7 proxy support +- L7 proxy support - HTTP1.0, 1.1, 2.0 etc - Telco/5G/6G friendly features * GTP tunnels as first class citizens + * LB support on various interfaces - N2, N4, E2 etc * Optimized SRv6 implementation * Support for UL-CL with LB, QFI and other utility extensions diff --git a/cicd/k3s-flannel-incluster/validation.sh b/cicd/k3s-flannel-incluster/validation.sh index ee45bc0c3..e3ef6b99a 100755 --- a/cicd/k3s-flannel-incluster/validation.sh +++ b/cicd/k3s-flannel-incluster/validation.sh @@ -41,7 +41,7 @@ else exit 1 fi -out=$(vagrant ssh host -c "socat -T10 - SCTP:$extIP:55004,bind=192.168.90.9") +out=$(vagrant ssh host -c "socat -T10 - sctp:$extIP:55004,bind=192.168.90.9") if [[ ${out} == *"server1"* ]]; then echo "k3s-flannel-cluster (kube-loxilb) sctp [OK]" else @@ -50,11 +50,11 @@ else exit 1 fi -out=$(vagramt ssh host -c "socat -T10 - SCTP:$extIP:57004,bind=192.168.90.9") +out=$(vagrant ssh host -c "socat -T10 - sctp:$extIP:57004,bind=192.168.90.9") if [[ ${out} == *"server1"* ]]; then - echo "k3s-flannel-cluster (kube-loxilb) onearm-sctp [OK]" + echo "k3s-flannel-cluster (kube-loxilb) default-sctp [OK]" else - echo "k3s-flannel-cluster (kube-loxilb) onerarm-sctp [FAILED]" + echo "k3s-flannel-cluster (kube-loxilb) default-sctp [FAILED]" print_debug_info exit 1 fi