PDA

View Full Version : VPN Ethernet?



JPHamlett
03-11-2015, 02:04 AM
Ok, so my school has a online tv app, but you need to be connected via ethernet, I want to watch it at home.

Is there anyway to VPN into an ethernet connection, or a way to spoof a java applet in order to think your connection is via ethernet?

Brandon
03-11-2015, 02:50 AM
Ok, so my school has a online tv app, but you need to be connected via ethernet, I want to watch it at home.

Is there anyway to VPN into an ethernet connection, or a way to spoof a java applet in order to think your connection is via ethernet?


If it really is done in Java, then Override/Instrument http://docs.oracle.com/javase/6/docs/api/java/net/NetworkInterface.html#getNetworkInterfaces%28%29

Any interface.getName() that .startsWith("wlan") or .startsWith("eth") is an ethernet connection and you need to override the method .isUp() to return true in such cases so that the application will believe that the ethernet connection "isUp", meaning that it's connected. Then return false for isUp() in all other case (because you cannot be connected to both wifi and ethernet but I doubt anyone really checks that).


Your school sure went through the extra work to determining wifi vs. ethernet which is dumb. Are you sure it's the applet that determines this? Look up "mapping eth to wifi". I'm not sure if a network bridge would work.

Turpinator
03-11-2015, 05:14 AM
Your school sure went through the extra work to determining wifi vs. ethernet which is dumb. Are you sure it's the applet that determines this? Look up "mapping eth to wifi". I'm not sure if a network bridge would work.

Yeeaaah. I really more sounds like hes got the whole 'ethernet' and 'wifi' thing confused.

Perhaps the TV App just simply checks your ip address against a list of allowed ones? My university has access to many journal/etc websites and they only work on campus due to having an allowed ip (range).

Brandon
03-11-2015, 05:34 AM
Yeeaaah. I really more sounds like hes got the whole 'ethernet' and 'wifi' thing confused.

Perhaps the TV App just simply checks your ip address against a list of allowed ones? My university has access to many journal/etc websites and they only work on campus due to having an allowed ip (range).

^ so much this! Would explain the behaviour.

When I was in school, they did the same thing + had a special certificate you had to accept/allow. All addresses had one range in one area and another in another area(lots of switches and hubs).

JPHamlett
03-11-2015, 11:43 PM
That being said, is there any easy way to make my ip look like its coming from the U?

Enslaved
03-16-2015, 03:59 PM
Remote login into your school account? or use your account in school as a VPN?