I am working with LS1046ARDB Evaluation Board to develop a network based application. I have started my project with Flex-builder(flexbuild_lsdk2108), Flex-installer(version: 1.13.2108) and Codewarrior IDE.
I have download the images from https://lsdk.github.io/components.html
boot_LS -> wget https://www.nxp.com/lgfiles/sdk/lsdk2108/boot_LS_arm64_lts_5.10.tgz
firmware image -> wget https://www.nxp.com/lgfiles/sdk/lsdk2108/firmware_ls1046ardb_sdboot.img
Rootfs -> wget https://www.nxp.com/lgfiles/sdk/lsdk2108/rootfs_lsdk2108_ubuntu_main_arm64.tgz
I have followed the steps in this URL -> https://doc.dpdk.org/guides/sample_app_ug/ipsec_secgw.html and tested dpdk-ipsec-secgw
setup:
PC1 <--> NXP-1-P0 <--> IPSEC[ENC/DEC] <--> NXP-1-P1 <--> NXP-2-P1 <--> IPSEC[ENC/DEC] <--> NXP-2-P0 <--> PC2
command which i run it on NXP-1 board [LS1046ARDB]
user@localhost:~$ sudo dpdk-ipsec-secgw -c 0x3 -n 2 -- -p 0x3 -P -u 0x2 --config="(0,0,0),(1,0,1)" -f ep0_gcm.cfg --mtu 3600 -j 5000
command which i run it on NXP-2 board [LS1046ARDB]
user@localhost:~$ sudo dpdk-ipsec-secgw -c 0x3 -n 2 -- -p 0x3 -P -u 0x2 --config="(0,0,0),(1,0,1)" -f ep1_gcm.cfg --mtu 3600 -j 5000
Output:
Tunnel mode:
Ping is working
SSH connection is working
SFTP also working
Transport mode:
Ping is working
But SSH and SFTP is not working
I attached Configuration file for Transport/Tunnel mode and wireshare log
My question is for Transport mode any other parse arguments which i have to enable or what to do?