Lines Matching full:remote
12 output = ethtool(f"-g {cfg.ifname}", host=cfg.remote).stdout
18 output = ethtool(f"-l {cfg.ifname}", host=cfg.remote).stdout
24 …output = ethtool(f"-N {cfg.ifname} flow-type tcp6 dst-port 9999 action {chan}", host=cfg.remote).s…
38 ethtool(f"-G {cfg.ifname} tcp-data-split on", host=cfg.remote)
39 ethtool(f"-G {cfg.ifname} rx 64", host=cfg.remote)
40 ethtool(f"-X {cfg.ifname} equal {combined_chans - 1}", host=cfg.remote)
45 with bkg(rx_cmd, host=cfg.remote, exit_wait=True):
46 wait_port_listen(9999, proto="tcp", host=cfg.remote)
49 ethtool(f"-N {cfg.ifname} delete {flow_rule_id}", host=cfg.remote)
50 ethtool(f"-X {cfg.ifname} default", host=cfg.remote)
51 ethtool(f"-G {cfg.ifname} rx {rx_ring}", host=cfg.remote)
52 ethtool(f"-G {cfg.ifname} tcp-data-split auto", host=cfg.remote)
64 ethtool(f"-G {cfg.ifname} tcp-data-split on", host=cfg.remote)
65 ethtool(f"-G {cfg.ifname} rx 64", host=cfg.remote)
66 ethtool(f"-X {cfg.ifname} equal {combined_chans - 1}", host=cfg.remote)
71 with bkg(rx_cmd, host=cfg.remote, exit_wait=True):
72 wait_port_listen(9999, proto="tcp", host=cfg.remote)
75 ethtool(f"-N {cfg.ifname} delete {flow_rule_id}", host=cfg.remote)
76 ethtool(f"-X {cfg.ifname} default", host=cfg.remote)
77 ethtool(f"-G {cfg.ifname} rx {rx_ring}", host=cfg.remote)
78 ethtool(f"-G {cfg.ifname} tcp-data-split auto", host=cfg.remote)
84 cfg.bin_remote = cfg.remote.deploy(cfg.bin_local)