I
I
Ivan Koreshkov2017-02-23 05:48:56
Windows
Ivan Koreshkov, 2017-02-23 05:48:56

2 network cards 2 browsers?

There are two kerio, there are two network cards on the computer, and therefore two ip addresses. How to configure so that 1 browser goes only through 1 network card and 2 browser only through 2 network cards? There is no way to set up a proxy.

Answer the question

In order to leave comments, you need to log in

6 answer(s)
N
nirvimel, 2017-02-23
@samalandar

ForceBindIP

O
Oleg Nerwin, 2017-02-23
@Nerwin

Give 1 network card to a virtual machine and run a second browser in it

S
Sergey, 2017-02-23
@edinorog

One browser to start up through a proxy. The second through nat. Then everything is destroyed by the rules

S
SagePtr, 2017-11-01
@SagePtr

return does not output data anywhere, it returns the value of the function. Yes, you can return an array this way, there's nothing wrong with that. In modern versions of PHP, arrays can be written shorter:
return ['str' => $result[0], 'gor' => $result[1]];

C
Cat Anton, 2017-11-01
@27cm

This will be the norm:

function geo($city = null) {
    // ...

    return [
        'str' => $result[0], 
        'gor' => $result[1],
    ];
}

Either like this:
function geo($city = null) {
    $result = [];

    // ...
    $result['str'] = $data[0];
    $result['gor'] = $data[1];

    return $result;
}

M
Morfeey, 2017-11-01
@Morfeey

Array output either

print_r($arr) // если вторым параметром указать true, то функция вернет результат

or by loop:
$arr = ['str' => $result[0], 'gor' => $result[1]];

foreach ($arr as $val) {
 print $val . "<br>"; // <br> для перехода на новую строку
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question