├── Dockerfile ├── LICENSE ├── README.md ├── app ├── encodesms.py ├── encodesms_cdma.py ├── install.sh ├── ipsec.conf ├── ipsec.secrets ├── kamailio-local.cfg ├── ssh-permit-root-password.conf ├── start.sh └── strongswan-send-p-cscf.conf └── docker-compose.yml /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExcelCoin/VoWiFiLocalDemo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExcelCoin/VoWiFiLocalDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExcelCoin/VoWiFiLocalDemo/HEAD/README.md -------------------------------------------------------------------------------- /app/encodesms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExcelCoin/VoWiFiLocalDemo/HEAD/app/encodesms.py -------------------------------------------------------------------------------- /app/encodesms_cdma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExcelCoin/VoWiFiLocalDemo/HEAD/app/encodesms_cdma.py -------------------------------------------------------------------------------- /app/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExcelCoin/VoWiFiLocalDemo/HEAD/app/install.sh -------------------------------------------------------------------------------- /app/ipsec.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExcelCoin/VoWiFiLocalDemo/HEAD/app/ipsec.conf -------------------------------------------------------------------------------- /app/ipsec.secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExcelCoin/VoWiFiLocalDemo/HEAD/app/ipsec.secrets -------------------------------------------------------------------------------- /app/kamailio-local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExcelCoin/VoWiFiLocalDemo/HEAD/app/kamailio-local.cfg -------------------------------------------------------------------------------- /app/ssh-permit-root-password.conf: -------------------------------------------------------------------------------- 1 | PermitRootLogin yes 2 | -------------------------------------------------------------------------------- /app/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExcelCoin/VoWiFiLocalDemo/HEAD/app/start.sh -------------------------------------------------------------------------------- /app/strongswan-send-p-cscf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExcelCoin/VoWiFiLocalDemo/HEAD/app/strongswan-send-p-cscf.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ExcelCoin/VoWiFiLocalDemo/HEAD/docker-compose.yml --------------------------------------------------------------------------------