Note: "permalinks" may not be as permanent as we would like,
direct links of old sources may well be a few messages off.
Il 05/04/2013 11:53, Philipp Reisner ha scritto:
> Yes.
>
> With the prerelease2 it will be also possible to use the same port
> for all connections:
>
> connection {
> host alice port 7010;
> host bob port 7001;
> protocol C;
> }
> connection {
> host alice port 7010;
> host charlie port 7010;
> protocol A;
> }
> connection {
> host bob port 7010;
> host charlie port 7010;
> protocol A;
> }
>
>
[root at drbd-1 ~]# drbdadm adjust all
drbd.d/testdr.res:26: Parse error: 'host | net | }' expected,
but got 'protocol' (TK 288)
Do I need to use:
connection {
host bob port 7010;
host charlie port 7010;
net {
protocol A;
}
}
??