Reputation: 21
There is a way to put some address pool in Java Security Exceptions (Java 8 and higher)? In Java 7 I can add eg. 192.168.* to the exception list. In Java 8 this doesn't work. (BTW. Sorry for my bad English)
Upvotes: 1
Views: 5076
Reputation: 11
You can edit the exception site list in a text editor (eg Notepad++). I used Excel to auto-fill a range (eg https://192.168.1.1 -> https://192.168.1.255). I then copied and pasted this into the exception.sites file.
C:\Users\username\AppData\LocalLow\Sun\Java\Deployment\security\exception.sites The exceptions then show up in the Java Control Panel exception list.
Upvotes: 1