Network on host not working

This is my network in host:

network:
ethernets:
ens33:
dhcp4: no
version: 2
bridges:
br0:
dhcp4: no
addresses:
- 192.168.174.128/24
routes:
- to: default
via: 192.68.174.2
interfaces:
- ens33

then i create lxd and give my container bridged network like that:
lxc config device add containername eth0 nic nictype=bridged parent=br0 name=eth0
issue is:
host not connected to internet but lxd is. Then i can’t update host and not launch a new images.

What’s the actual issue on the host?

For one thing, your gateway has a typo, it’s likely 192.168.174.2 and not 192.68.174.2.
Your config is also missing DNS configuration which would likely cause some issues.

Thanks i forgot dns . and gatway was wrong to . Thanks