[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-discuss] Multiple ports hostfwd is not working as expected
From: |
Alexei Colin |
Subject: |
Re: [Qemu-discuss] Multiple ports hostfwd is not working as expected |
Date: |
Thu, 21 Feb 2019 12:00:25 -0500 |
User-agent: |
Mutt/1.11.2 (2019-01-07) |
On Thu, Feb 21, 2019 at 04:37:55PM +0000, Bilal, Muhammad wrote:
> $ ./qemu-system-aarch64 -M xlnx-zcu102 -m 256 -smp 4 -net nic -net nic -net
> nic -net nic -net user,hostfwd=tcp::8080-:8080 -net
> user,hostfwd=tcp::8081-:8081 -kernel <app.out> -serial stdio
Try passing multiple hostfwd= arguments in the same -net argument:
-net user,hostfwd=tcp::8080-:8080,hostfwd=tcp::8081-:8081
This is how multiple port forward worked for me in the past.