Версия Ubuntu 10.04.4 LTS,
Ядро 2.6.32-43-generic.
Виртуальная машина VMWare.
Обновления накатаны.
После того, как перенес систему на шифрованный раздел, решил настроить удаленный доступ на этапе ввода секретной фразы через dropbear. Пытаюсь настроить сеть в initramfs, сети нет

В /etc/default/grub прописал:
GRUB_CMDLINE_LINUX_DEFAULT="ip=dhcp"
Выполнил:
sudo update-grub
Содержимое /etc/initramfs-tools/initramfs.conf :
#
# initramfs.conf
# Configuration file for mkinitramfs(8). See initramfs.conf(5).
#
#
# MODULES: [ most | netboot | dep | list ]
#
# most - Add all framebuffer, acpi, filesystem, and harddrive drivers.
#
# dep - Try and guess which modules to load.
#
# netboot - Add the base modules, network modules, but skip block devices.
#
# list - Only include modules from the 'additional modules' list
#
MODULES=most
#
# BUSYBOX: [ y | n ]
#
# Use busybox if available.
#
BUSYBOX=y
#
# COMPCACHE_SIZE: [ "x K" | "x M" | "x G" | "x %" ]
#
# Amount of RAM to use for RAM-based compressed swap space.
#
# An empty value - compcache isn't used, or added to the initramfs at all.
# An integer and K (e.g. 65536 K) - use a number of kilobytes.
# An integer and M (e.g. 256 M) - use a number of megabytes.
# An integer and G (e.g. 1 G) - use a number of gigabytes.
# An integer and % (e.g. 50 %) - use a percentage of the amount of RAM.
#
# You can optionally install the compcache package to configure this setting
# via debconf and have userspace scripts to load and unload compcache.
#
COMPCACHE_SIZE=""
#
# NFS Section of the config.
#
#
# BOOT: [ local | nfs ]
#
# local - Boot off of local media (harddrive, USB stick).
#
# nfs - Boot using an NFS drive as the root of the drive.
#
BOOT=local
#
# DEVICE: ...
#
# Specify the network interface, like eth0
#
DEVICE=eth0
#
# NFSROOT: [ auto | HOST:MOUNT ]
#
NFSROOT=auto
DROPBEAR=y
Содержимое /etc/initramfs-tools/modules :
# List of modules that you want to include in your initramfs.
#
# Syntax: module_name [args ...]
#
# You must run update-initramfs(8) to effect this change.
#
# Examples:
#
# raid1
# sd_mod
dm_mod
dm_crypt
cryptoloop
sha256
sha512
aes
cbc
1. Перезагружаюсь, попадаю в GRUB2,
2. на физической тачке запускаю WireShark на виртуальном интерфейсе,
3. в GRUB2 выбираю соответствующее ядро, дохожу до ввода секретной фразы
- в WireShark про DHCP offer ничего нет.
Если продолжить загрузку дальше, DHCP offer естесственно появляется.
Идеи?