63 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
1
answer
2k
views
quadlet podman container with macvlan, how to configure mac address?
I am using the new quadlet to automatically start podman container, getting its ip from the dhcp server using the following systemd config:
adguard.container
[Unit]
Description=Adguard Container
[...
0
votes
0
answers
66
views
"emulating" a virtual machine / sharing one MAVLAN IP with several services in one docker-compose script
I do have the following problem: I have a docker image of an home-automation system which comprises a lot of Services like: MQTT Service, Web-Interface, WebServer etc. so it uses a lot of ports and I ...
0
votes
0
answers
139
views
docker-compose: when bringing up several containers at once, containers get stuck in init, starting dbus
I am using docker-compose to run several instances of image mikebrady:shairport-sync on an armbian host, using macvlan networking following an example configuration here. I can bring up each service ...
-2
votes
1
answer
118
views
Can mac-vlan use special MAC Address send packege?
I'm using mac-valn to create virtual NIC and send package
Here is the network
20.0.0.25/24 20.0.0.26/24
----- ens10 --------- ens4 -----
| PC1 | ----------| VSwitch |-...
0
votes
1
answer
67
views
Docker network communication
I have a docker-compose project, let's say Users and Resources. I want containers in Users to connect to containers in Resource but, containers in Users should not communicate with each other. Each ...
1
vote
1
answer
99
views
When assigning an IP via Docker container macvlan and sending video to that container, will the data be limited?
I created a macvlan network as shown below.
docker network create -d macvlan \
--subnet=192.168.1.0/24 \
--gateway=192.168.1.1 \
-o parent=eno1 \
macvlan_network
And the container was ...
3
votes
0
answers
2k
views
How can I expose a rootless container to the network, preferably on its own IP?
I have a few applications that I run in containers, and that need full network access. Mostly because they rely on broadcast and multicast for some of their functionality.
So currently I do something ...
1
vote
0
answers
104
views
Access Cassandra docker container from a different host by static IP
I have two vms(Oracle VirtualBox) with Ubuntu 22.04 lts. Bridged network is configured between these vms.
On the first vm i run Cassandra docker container.
My goal is to make it accessible from the ...
1
vote
0
answers
5k
views
docker compose use ipvlan with static address for a DHCP server
I'd like to run a docker-compose made of a few containers one of which should act as a DHCP server and assign IP addresses to a few devices attached to a bridge directly plugged into one of the docker-...
1
vote
0
answers
867
views
Docker-Compose for Traefik on Macvlan
I am running on a Synology NAS and trying to get Traefik working over macvlan, because ports 80 and 443 are already in use. I can access the Traefik dashboard via 192.168.0.240:8080 and my external IP,...
0
votes
0
answers
1k
views
Forward traffic from container's localhost to host IP
I have a podman container running on my host with a public IP. If I try to access localhost:80 from container, it should get mapped to host-ip:443.
I tried to do this using port forwarding like this:
...
0
votes
0
answers
183
views
Cannot access nginx when the container is in macvlan
I have started nginx container, it is in macvlan. Everything works fine ping, system updating, and so on. But when I want to access nginx and type the IP of the container in my browser nothing happens ...
1
vote
1
answer
2k
views
Synology running docker & Portainer MacVlan Setup
I recently started Using Docker&Portainer on my Synology. However all containers I Create use my Synology ipadres just a different port.
I want to setup a MacVlan through Portainer I am able to ...
0
votes
1
answer
5k
views
Kubernetes with multus, and macvlan selecting the wrong interface eth0
I am working through some training on kubernetes and have the following config.
4 vm's running ubuntu 20.04 with the, one master and 3 nodes with calico CNI.
I managed to deploy some nginx pods and ...
0
votes
1
answer
3k
views
Cannot access macvlan docker container from another device on network via ip
I have a docker container I would like to access from other clients on the LAN. I do not want to access them via the docker host's IP and bind container ports to host ports. I would like to access the ...