Hi list,

I have setup my OpenWRT Box to let users connect to VPN Server on the internet.

Clients => OpenWRT Box => VPN Server

I want to let multiple users to use only one account to connect to a
VPN Server. Currently, If I use a PC to connect to VPN, it's working
fine. However, I want to let many users use the same account to
connect to the VPN Server. Is it possible to do it on OpenWRT?

Here is my /etc/config/network config.
cat /etc/config/network

config interface 'loopback'
        option ifname 'lo'
        option proto 'static'
        option ipaddr '127.0.0.1'
        option netmask '255.0.0.0'

config interface 'lan'
        option ifname 'eth0.1'
        option type 'bridge'
        option proto 'static'
        option ipaddr '192.168.1.1'
        option netmask '255.255.255.0'

config interface 'wan'
        option ifname 'eth0.2'
        option _orig_ifname 'eth0.2'
        option _orig_bridge 'false'
        option proto 'pppoe'
        option username 'username'
        option password 'password'

Thanks,
Dat
_______________________________________________
openwrt-users mailing list
[email protected]
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-users

Reply via email to