Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 833 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 833 Bytes

fxc

Container allowing create fake connections to emulate X sessions.

Container Repository on Quay

Run container

Container should be run with mandatory envs: HOST, USER, PASSWORD

Env INSECURE allows to force certificate validation on connection (only for RDP connections). Default value is true, so no certificate validation

# vnc fake connection
podman run -d --rm --name fxc-vnc \
    -e PROTOCOL=vnc \
    -e HOST=x.x.x.x \
    -e USER=fake \
    -e PASSWORDs=fake \
    quay.io/rhqp/fxc:v1.0.0-dev

# rdp fake connection
podman run -d --rm --name fxc-rdp \
    -e PROTOCOL=rdp \
    -e HOST=x.x.x.x \
    -e USER=fake \
    -e PASSWORDs=fake \
    quay.io/rhqp/fxc:v1.0.0-dev