A:
You can try to use freeswan and use FQDN of the NAS as the user in the first IP address.
If that doesn't work, create a new user with a different name and see if it works with that user.
You can always switch back to the old user if this solution doesn't work.
Q:
Why is an error message on a value being changed to double not showing up in Eclipse?
I have this code snippet from Eclipse:
import java.util.Random;
import java.util.Scanner;
public class Question{
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
Random random = new Random();
double number;
int num;
System.out.println("Enter the number: ");
number = scanner.nextDouble();
if (number 9) {
System.out.println("You must enter a number less than or equal to 9. ");
}
else {
System.out.println("Good job! You entered " + number + ".");
// System.out.println(number);
number += random.nextInt(10);
}
System.out.println("And the number you entered is " + number);
scanner.close();
}
}
When I enter a number, and then I change the number to a new number, I get the error on the new number and it just says "The be359ba680
Related links:
Comments